aboutsummaryrefslogtreecommitdiffstats
path: root/.eslintrc.js
blob: d9be6f9202f2abfaf7a079257cf890ce9c482a19 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
module.exports = {
  root: true,
  parserOptions: {
    ecmaVersion: 12,
    sourceType: 'module',
  },
  env: {
    browser: true,
    es2021: true,
    node: true,
    jquery: true,
  },
  extends: ['eslint:recommended'],
  rules: {},
};