summaryrefslogtreecommitdiffstats
path: root/.eslintrc.json
blob: 472f568561711168bf2c98ef35a2db2eea824392 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
  "extends": "eslint:recommended",
  "parserOptions": {
    "ecmaVersion": 5,
    "sourceType": "script"
  },
  "rules": {
    "camelcase": "warn",
    "dot-location": "warn",
    "eqeqeq": ["error", "always"],
    "no-unused-vars": ["error", {
        "argsIgnorePattern": "^_"
    }],
    "quotes": ["warn", "double"],
    "require-atomic-updates": "error"
  },
  "globals": {
    "console": "writable",
    "svg": "writable",
    "print": "readonly"
  }
}