summaryrefslogtreecommitdiffstats
path: root/.eslintrc.json
blob: 4fb1c0f169f733ea915a13774a0f6e4f484288e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
  "extends": "eslint:recommended",
  "parserOptions": {
    "ecmaVersion": 5,
    "sourceType": "script"
  },
  "rules": {
    "no-unused-vars": ["error", { "vars": "all", "args": "none" }],
    "no-fallthrough": "off",
    "no-console": "off",
    "no-tabs": "off",
    "quotes": ["warn", "double"],
    "eqeqeq": ["error", "always"],
    "camelcase": "error",
    "no-redeclare": "off",
    "dot-location": "off",
    "getter-return": "off",
    "yoda": "off",
    "require-atomic-updates": "off",
    "no-with": "off",
    "no-prototype-builtins": "off",
    "no-misleading-character-class": "off",
    "no-async-promise-executor": "off"
  },
  "globals": {
    "components": "readonly",
    "engine": "readonly",
    "midi": "readonly",
    "print": "readonly",
    "script": "readonly"
  }
}