123456789101112131415161718192021222324 |
- {
- "env": {
- "browser": false,
- "commonjs": true,
- "es6": true,
- "node": true
- },
- "parserOptions": {
- "ecmaFeatures": {
- "jsx": true
- },
- "ecmaVersion": 8,
- "sourceType": "module"
- },
- "rules": {
- "no-const-assign": "warn",
- "no-this-before-super": "warn",
- "no-undef": "warn",
- "no-unreachable": "warn",
- "no-unused-vars": "warn",
- "constructor-super": "warn",
- "valid-typeof": "warn"
- }
- }
|