• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1{
2  "env": {
3    "commonjs": true,
4    "es6": true,
5    "node": true
6  },
7  "parserOptions": {
8    "ecmaVersion": 2018,
9    "ecmaFeatures": {
10      "jsx": false
11    },
12    "sourceType": "module"
13  },
14  "rules": {
15    "no-const-assign": "error",
16    "no-undef": "off",
17    "no-unreachable": "warn",
18    "no-unused-vars": "warn",
19    "no-redeclare": "error",
20    "no-octal": "error",
21    "no-self-assign": "error",
22    "no-unused-labels": "warn",
23    "no-useless-return": "warn",
24    "constructor-super": "warn",
25    "valid-typeof": "warn",
26    "no-mixed-spaces-and-tabs": "warn",
27    "no-delete-var": "error",
28    "no-class-assign": "error",
29    "no-this-before-super": "warn",
30    "require-yield": "warn",
31    "quotes": [
32      "warn",
33      "single"
34    ],
35    "semi": [
36      "warn",
37      "always"
38    ],
39    "semi-spacing": [
40      "warn",
41      {
42        "before": false,
43        "after": true
44      }
45    ],
46    "no-extra-semi": "error",
47    "brace-style": [
48      "error",
49      "1tbs",
50      {
51        "allowSingleLine": true
52      }
53    ]
54  }
55}