1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- {
- "extends": ["eslint:recommended", "plugin:prettier/recommended"],
- "plugins": ["prettier"],
- "parserOptions": {
- "ecmaVersion": 2018,
- "sourceType": "module"
- },
- "env": {
- "es6": true,
- "browser": true,
- "node": true,
- },
- "rules": {
- "block-scoped-var": 1,
- "curly": 1,
- "eqeqeq": 1,
- "no-global-assign": 1,
- "no-implicit-globals": 1,
- "no-labels": 1,
- "no-multi-str": 1,
- "comma-spacing": 1,
- "comma-style": 1,
- "func-call-spacing": 1,
- "keyword-spacing": 1,
- "linebreak-style": 1,
- "no-multiple-empty-lines": 1,
- "space-infix-ops": 1,
- "arrow-spacing": 1,
- "no-var": 1,
- "prefer-const": 1,
- "no-unsafe-negation": 1,
- "array-callback-return": 1,
- "dot-notation": 1,
- "no-eval": 1,
- "no-extend-native": 1,
- "no-extra-label": 1,
- "semi": 1,
- "space-before-blocks": 1,
- "space-in-parens": 1,
- "space-unary-ops": 1,
- "spaced-comment": 1,
- "arrow-body-style": 1,
- "arrow-parens": 1,
- "no-restricted-imports": 1,
- "no-duplicate-imports": 1,
- "no-useless-computed-key": 1,
- "no-useless-rename": 1,
- "rest-spread-spacing": 1,
- "no-trailing-spaces": 1,
- "no-control-regex": 0,
- "prettier/prettier": 0,
- "no-await-in-loop": 1,
- "require-atomic-updates": 0,
- "no-prototype-builtins": 0
- }
- }
|