Customized ESLint
by John Vincent
Posted on March 20, 2022
Including configuration of ESLint, AirBnb, and Prettier
This ESLint discussion is an addition to Visual Studio Code
ESLint
Prettier
I chose to install and use the Visual Studio Code extension Prettier - Code Formatter
Workspace .prettierrc
{
"singleQuote": true,
"semi": true,
"tabWidth": 2,
"trailingComma": "none",
"useTabs": true,
"printWidth": 120
}
Workspace Settings
The workspace settings file is located in your project at .vscode/settings.json
{
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"editor.tabCompletion": "on",
"editor.snippetSuggestions": "top",
"window.zoomLevel": 0,
"editor.tabSize": 2,
"editor.insertSpaces": false,
"editor.detectIndentation": false,
"prettier.useTabs": true,
"prettier.trailingComma": "es5",
"prettier.tabWidth": 2,
"prettier.printWidth": 120,
"prettier.singleQuote": true
}
Babel
Workspace .babelrc
{
"presets": ["@babel/env", "@babel/react"],
"plugins": [
"@babel/proposal-object-rest-spread",
"@babel/proposal-class-properties",
"@babel/plugin-syntax-dynamic-import",
[
"@babel/plugin-transform-runtime",
{
"absoluteRuntime": false,
"corejs": false,
"helpers": true,
"regenerator": true,
"useESModules": false
}
]
]
}
ESLint
Workspace .eslintrc
{
"extends": ["airbnb", "airbnb/hooks", "prettier"],
"env": {
"browser": true
},
"parser": "@babel/eslint-parser",
"globals": {},
"rules": {
"no-console": 0,
"max-len": [
"error",
{
"code": 120,
"tabWidth": 2,
"comments": 120,
"ignoreTrailingComments": true,
"ignoreUrls": true,
"ignorePattern": "^import\\s.+\\sfrom\\s.+;$"
}
],
"quotes": ["error", "single"],
"jsx-quotes": [2, "prefer-single"],
"indent": [2, "tab", { "SwitchCase": 1 }],
"no-tabs": 0,
"react/jsx-indent": ["off", 2],
"react/jsx-indent-props": ["off", 2],
"jsx-a11y/anchor-is-valid": [
"error",
{
"components": ["Link"],
"specialLink": ["to"]
}
],
"react/destructuring-assignment": ["off", "always"],
"react-hooks/rules-of-hooks": "error",
"react-hooks/exhaustive-deps": "warn"
},
"plugins": ["prettier", "react", "react-hooks", "import", "jsx-a11y"]
}
Note the plugins check the rules.
Unit tests tests/.eslintrc
{
"extends": [
"../.eslintrc",
"plugin:testing-library/react",
"plugin:jest/all"
],
"plugins": [
"testing-library",
"jest"
]
}
Package
Workspace package.json
includes
"dependencies": {
"@babel/runtime": "^7.17.2"
...
},
"devDependencies": {
"@babel/core": "^7.17.2",
"@babel/eslint-parser": "^7.17.0",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-proposal-object-rest-spread": "^7.16.7",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.2.1",
"babel-jest": "^27.5.1",
"babel-loader": "^8.2.3",
"eslint": "^8.8.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^26.1.1",
"eslint-plugin-jest-dom": "^4.0.1",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-testing-library": "^5.1.0",
"eslint-webpack-plugin": "^3.1.1",
...
}
and
"scripts": {
"lint": "eslint 'src/**/*.{js,jsx}' --quiet",
"eslint-versions": "npm info eslint-config-airbnb@latest peerDependencies",
"eslint-check": "eslint-config-prettier index.js",
"eslint-rules": "eslint --print-config file.js",
}
ESLint / Prettier Configuration Check
"eslint-check": "eslint-config-prettier index.js",
checks your ESLint configuration looking for inconsistencies between your ESLint and prettier configurations. Useful if you are having difficulties with Prettier.
ESLint Your Code
"lint": "eslint 'src/**/*.{js,jsx}' --quiet",
performs ESLint on all code in src
and its subfolders. All messages are written to stdout. Useful for viewing all ESLint problems in one place.
Note that folders may be ignored using .eslintignore
For example
node_modules
dist
public
*.md
*.todo
List ESLint Configuration
"eslint-rules": "eslint --print-config file.js",
writes to standard out.
Custom ESLint
Using the various plugins to define ESLint Configuration is my preferred path. However, the following describes a mechanism for defining and using a custom ESLint configuration.
In package.json
, notice
"eslint-rules": "eslint --print-config file.js",
Use this
npm run eslint-rules > project-eslint.json
to create project-eslint.json
.
Edit project-eslint.json
and remove the none json content at the top.
Organize the Rules
Create create-sorted-eslint.js
const fs = require('fs');
const sortObject = obj => Object.keys(obj).sort().reduce((res, key) => (res[key] = obj[key], res), {});
const infile = 'project-eslint.json';
const outfile = 'sorted-project-eslint.json';
const obj = JSON.parse(fs.readFileSync(infile, 'utf8'));
const arr = sortObject(obj);
const { rules } = arr;
arr.rules = sortObject(rules);
const data = JSON.stringify(arr, null, 2);
fs.writeFileSync(outfile, data);
and run it
node create-sorted-eslint.js
to create sorted-project-eslint.json
, an easier to read and maintain .eslintrc
.
Copy sorted-project-eslint.json
to .eslintrc
Update Extends
Could now change .eslintrc
to
"extends": [],
and will no longer need
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.3.0",
but I leave them there as will be easier to create a new .eslintrc
file if needed.
Update Rules
Now that the .eslintrc
fully defines the rules it is easy to
- see and understand the rules.
- change those rules
A widely used .eslintrc
file follows
{
"env": {
"browser": true,
"jest": true,
"es6": true,
"node": true
},
"globals": {},
"ignorePatterns": [
"node_modules",
"node_modules",
"dist",
"public",
"*.md",
"*.todo"
],
"parser": "@babel/eslint-parser",
"parserOptions": {
"sourceType": "module",
"ecmaVersion": 2020,
"ecmaFeatures": {
"jsx": true,
"modules": true,
"generators": false,
"objectLiteralDuplicateProperties": false
}
},
"plugins": [
"jsx-a11y",
"import",
"react-hooks",
"react",
"prettier"
],
"rules": {
"@babel/object-curly-spacing": [
"off"
],
"@babel/semi": [
"off"
],
"@typescript-eslint/brace-style": [
"off"
],
"@typescript-eslint/comma-dangle": [
"off"
],
"@typescript-eslint/comma-spacing": [
"off"
],
"@typescript-eslint/func-call-spacing": [
"off"
],
"@typescript-eslint/indent": [
"off"
],
"@typescript-eslint/keyword-spacing": [
"off"
],
"@typescript-eslint/member-delimiter-style": [
"off"
],
"@typescript-eslint/no-extra-parens": [
"off"
],
"@typescript-eslint/no-extra-semi": [
"off"
],
"@typescript-eslint/object-curly-spacing": [
"off"
],
"@typescript-eslint/quotes": [
0
],
"@typescript-eslint/semi": [
"off"
],
"@typescript-eslint/space-before-blocks": [
"off"
],
"@typescript-eslint/space-before-function-paren": [
"off"
],
"@typescript-eslint/space-infix-ops": [
"off"
],
"@typescript-eslint/type-annotation-spacing": [
"off"
],
"accessor-pairs": [
"off"
],
"array-bracket-newline": [
"off",
"consistent"
],
"array-bracket-spacing": [
"error",
"never"
],
"array-callback-return": [
"error",
{
"allowImplicit": true,
"checkForEach": false
}
],
"array-element-newline": [
"off",
{
"multiline": true,
"minItems": 3
}
],
"arrow-body-style": [
"error",
"as-needed",
{
"requireReturnForObjectLiteral": false
}
],
"arrow-parens": [
"error",
"always"
],
"arrow-spacing": [
"error",
{
"before": true,
"after": true
}
],
"babel/object-curly-spacing": [
"off"
],
"babel/quotes": [
0
],
"babel/semi": [
"off"
],
"block-scoped-var": [
"error"
],
"block-spacing": [
"error",
"always"
],
"brace-style": [
"error",
"1tbs",
{
"allowSingleLine": true
}
],
"callback-return": [
"off"
],
"camelcase": [
"error",
{
"properties": "never",
"ignoreDestructuring": false,
"ignoreImports": false,
"ignoreGlobals": false
}
],
"capitalized-comments": [
"off",
"never",
{
"line": {
"ignorePattern": ".*",
"ignoreInlineComments": true,
"ignoreConsecutiveComments": true
},
"block": {
"ignorePattern": ".*",
"ignoreInlineComments": true,
"ignoreConsecutiveComments": true
}
}
],
"class-methods-use-this": [
"error",
{
"exceptMethods": [
"render",
"getInitialState",
"getDefaultProps",
"getChildContext",
"componentWillMount",
"UNSAFE_componentWillMount",
"componentDidMount",
"componentWillReceiveProps",
"UNSAFE_componentWillReceiveProps",
"shouldComponentUpdate",
"componentWillUpdate",
"UNSAFE_componentWillUpdate",
"componentDidUpdate",
"componentWillUnmount",
"componentDidCatch",
"getSnapshotBeforeUpdate"
],
"enforceForClassFields": true
}
],
"comma-dangle": [
"error",
"never"
],
"comma-spacing": [
"error",
{
"before": false,
"after": true
}
],
"comma-style": [
"error",
"last",
{
"exceptions": {
"ArrayExpression": false,
"ArrayPattern": false,
"ArrowFunctionExpression": false,
"CallExpression": false,
"FunctionDeclaration": false,
"FunctionExpression": false,
"ImportDeclaration": false,
"ObjectExpression": false,
"ObjectPattern": false,
"VariableDeclaration": false,
"NewExpression": false
}
}
],
"complexity": [
"off",
11
],
"computed-property-spacing": [
"error",
"never"
],
"consistent-return": [
"error"
],
"consistent-this": [
"off"
],
"constructor-super": [
"error"
],
"curly": [
"error",
"multi-line"
],
"default-case": [
"error",
{
"commentPattern": "^no default$"
}
],
"default-case-last": [
"off"
],
"default-param-last": [
"off"
],
"dot-location": [
"error",
"property"
],
"dot-notation": [
"error",
{
"allowKeywords": true,
"allowPattern": ""
}
],
"eol-last": [
"error",
"always"
],
"eqeqeq": [
"error",
"always",
{
"null": "ignore"
}
],
"flowtype/boolean-style": [
"off"
],
"flowtype/delimiter-dangle": [
"off"
],
"flowtype/generic-spacing": [
"off"
],
"flowtype/object-type-curly-spacing": [
"off"
],
"flowtype/object-type-delimiter": [
"off"
],
"flowtype/quotes": [
"off"
],
"flowtype/semi": [
"off"
],
"flowtype/space-after-type-colon": [
"off"
],
"flowtype/space-before-generic-bracket": [
"off"
],
"flowtype/space-before-type-colon": [
"off"
],
"flowtype/union-intersection-spacing": [
"off"
],
"for-direction": [
"error"
],
"func-call-spacing": [
"error",
"never"
],
"func-name-matching": [
"off",
"always",
{
"includeCommonJSModuleExports": false,
"considerPropertyDescriptor": true
}
],
"func-names": [
"warn"
],
"func-style": [
"off",
"expression"
],
"function-call-argument-newline": [
"off",
"consistent"
],
"function-paren-newline": [
"error",
"consistent"
],
"generator-star": [
"off"
],
"generator-star-spacing": [
"error",
{
"before": false,
"after": true
}
],
"getter-return": [
"error",
{
"allowImplicit": true
}
],
"global-require": [
"error"
],
"grouped-accessor-pairs": [
"off"
],
"guard-for-in": [
"error"
],
"handle-callback-err": [
"off"
],
"id-blacklist": [
"off"
],
"id-denylist": [
"off"
],
"id-length": [
"off"
],
"id-match": [
"off"
],
"implicit-arrow-linebreak": [
"error",
"beside"
],
"import/default": [
"off"
],
"import/dynamic-import-chunkname": [
"off",
{
"importFunctions": [],
"webpackChunknameFormat": "[0-9a-zA-Z-_/.]+"
}
],
"import/export": [
"error"
],
"import/exports-last": [
"off"
],
"import/extensions": [
"error",
"ignorePackages",
{
"js": "never",
"mjs": "never",
"jsx": "never"
}
],
"import/first": [
"error"
],
"import/group-exports": [
"off"
],
"import/imports-first": [
"off"
],
"import/max-dependencies": [
"off",
{
"max": 10
}
],
"import/named": [
"error"
],
"import/namespace": [
"off"
],
"import/newline-after-import": [
"error"
],
"import/no-absolute-path": [
"error"
],
"import/no-amd": [
"error"
],
"import/no-anonymous-default-export": [
"off",
{
"allowArray": false,
"allowArrowFunction": false,
"allowAnonymousClass": false,
"allowAnonymousFunction": false,
"allowLiteral": false,
"allowObject": false
}
],
"import/no-commonjs": [
"off"
],
"import/no-cycle": [
"error",
{
"maxDepth": "∞",
"ignoreExternal": false
}
],
"import/no-default-export": [
"off"
],
"import/no-deprecated": [
"off"
],
"import/no-duplicates": [
"error"
],
"import/no-dynamic-require": [
"error"
],
"import/no-extraneous-dependencies": [
"error",
{
"devDependencies": [
"test/**",
"tests/**",
"spec/**",
"**/__tests__/**",
"**/__mocks__/**",
"test.{js,jsx}",
"test-*.{js,jsx}",
"**/*{.,_}{test,spec}.{js,jsx}",
"**/jest.config.js",
"**/jest.setup.js",
"**/vue.config.js",
"**/webpack.config.js",
"**/webpack.config.*.js",
"**/rollup.config.js",
"**/rollup.config.*.js",
"**/gulpfile.js",
"**/gulpfile.*.js",
"**/Gruntfile{,.js}",
"**/protractor.conf.js",
"**/protractor.conf.*.js",
"**/karma.conf.js"
],
"optionalDependencies": false
}
],
"import/no-import-module-exports": [
"error",
{
"exceptions": []
}
],
"import/no-internal-modules": [
"off",
{
"allow": []
}
],
"import/no-mutable-exports": [
"error"
],
"import/no-named-as-default": [
"error"
],
"import/no-named-as-default-member": [
"error"
],
"import/no-named-default": [
"error"
],
"import/no-named-export": [
"off"
],
"import/no-namespace": [
"off"
],
"import/no-nodejs-modules": [
"off"
],
"import/no-relative-packages": [
"error"
],
"import/no-relative-parent-imports": [
"off"
],
"import/no-restricted-paths": [
"off"
],
"import/no-self-import": [
"error"
],
"import/no-unassigned-import": [
"off"
],
"import/no-unresolved": [
"error",
{
"commonjs": true,
"caseSensitive": true,
"caseSensitiveStrict": false
}
],
"import/no-unused-modules": [
"off",
{
"ignoreExports": [],
"missingExports": true,
"unusedExports": true
}
],
"import/no-useless-path-segments": [
"error",
{
"commonjs": true
}
],
"import/no-webpack-loader-syntax": [
"error"
],
"import/order": [
"error",
{
"groups": [
[
"builtin",
"external",
"internal"
]
],
"warnOnUnassignedImports": false
}
],
"import/prefer-default-export": [
"error"
],
"import/unambiguous": [
"off"
],
"indent": [
2,
"tab",
{
"SwitchCase": 1,
"flatTernaryExpressions": false,
"offsetTernaryExpressions": false,
"ignoreComments": false
}
],
"indent-legacy": [
"off"
],
"init-declarations": [
"off"
],
"jsx-a11y/accessible-emoji": [
"off"
],
"jsx-a11y/alt-text": [
"error",
{
"elements": [
"img",
"object",
"area",
"input[type=\"image\"]"
],
"img": [],
"object": [],
"area": [],
"input[type=\"image\"]": []
}
],
"jsx-a11y/anchor-has-content": [
"error",
{
"components": []
}
],
"jsx-a11y/anchor-is-valid": [
"error",
{
"components": [
"Link"
],
"specialLink": [
"to"
]
}
],
"jsx-a11y/aria-activedescendant-has-tabindex": [
"error"
],
"jsx-a11y/aria-props": [
"error"
],
"jsx-a11y/aria-proptypes": [
"error"
],
"jsx-a11y/aria-role": [
"error",
{
"ignoreNonDOM": false
}
],
"jsx-a11y/aria-unsupported-elements": [
"error"
],
"jsx-a11y/autocomplete-valid": [
"off",
{
"inputComponents": []
}
],
"jsx-a11y/click-events-have-key-events": [
"error"
],
"jsx-a11y/control-has-associated-label": [
"error",
{
"labelAttributes": [
"label"
],
"controlComponents": [],
"ignoreElements": [
"audio",
"canvas",
"embed",
"input",
"textarea",
"tr",
"video"
],
"ignoreRoles": [
"grid",
"listbox",
"menu",
"menubar",
"radiogroup",
"row",
"tablist",
"toolbar",
"tree",
"treegrid"
],
"depth": 5
}
],
"jsx-a11y/heading-has-content": [
"error",
{
"components": [
""
]
}
],
"jsx-a11y/html-has-lang": [
"error"
],
"jsx-a11y/iframe-has-title": [
"error"
],
"jsx-a11y/img-redundant-alt": [
"error"
],
"jsx-a11y/interactive-supports-focus": [
"error"
],
"jsx-a11y/label-has-associated-control": [
"error",
{
"labelComponents": [],
"labelAttributes": [],
"controlComponents": [],
"assert": "both",
"depth": 25
}
],
"jsx-a11y/label-has-for": [
"off",
{
"components": [],
"required": {
"every": [
"nesting",
"id"
]
},
"allowChildren": false
}
],
"jsx-a11y/lang": [
"error"
],
"jsx-a11y/media-has-caption": [
"error",
{
"audio": [],
"video": [],
"track": []
}
],
"jsx-a11y/mouse-events-have-key-events": [
"error"
],
"jsx-a11y/no-access-key": [
"error"
],
"jsx-a11y/no-autofocus": [
"error",
{
"ignoreNonDOM": true
}
],
"jsx-a11y/no-distracting-elements": [
"error",
{
"elements": [
"marquee",
"blink"
]
}
],
"jsx-a11y/no-interactive-element-to-noninteractive-role": [
"error",
{
"tr": [
"none",
"presentation"
]
}
],
"jsx-a11y/no-noninteractive-element-interactions": [
"error",
{
"handlers": [
"onClick",
"onMouseDown",
"onMouseUp",
"onKeyPress",
"onKeyDown",
"onKeyUp"
]
}
],
"jsx-a11y/no-noninteractive-element-to-interactive-role": [
"error",
{
"ul": [
"listbox",
"menu",
"menubar",
"radiogroup",
"tablist",
"tree",
"treegrid"
],
"ol": [
"listbox",
"menu",
"menubar",
"radiogroup",
"tablist",
"tree",
"treegrid"
],
"li": [
"menuitem",
"option",
"row",
"tab",
"treeitem"
],
"table": [
"grid"
],
"td": [
"gridcell"
]
}
],
"jsx-a11y/no-noninteractive-tabindex": [
"error",
{
"tags": [],
"roles": [
"tabpanel"
]
}
],
"jsx-a11y/no-onchange": [
"off"
],
"jsx-a11y/no-redundant-roles": [
"error"
],
"jsx-a11y/no-static-element-interactions": [
"error",
{
"handlers": [
"onClick",
"onMouseDown",
"onMouseUp",
"onKeyPress",
"onKeyDown",
"onKeyUp"
]
}
],
"jsx-a11y/role-has-required-aria-props": [
"error"
],
"jsx-a11y/role-supports-aria-props": [
"error"
],
"jsx-a11y/scope": [
"error"
],
"jsx-a11y/tabindex-no-positive": [
"error"
],
"jsx-quotes": [
2,
"prefer-single"
],
"key-spacing": [
"error",
{
"beforeColon": false,
"afterColon": true
}
],
"keyword-spacing": [
"error",
{
"before": true,
"after": true,
"overrides": {
"return": {
"after": true
},
"throw": {
"after": true
},
"case": {
"after": true
}
}
}
],
"line-comment-position": [
"off",
{
"position": "above",
"ignorePattern": "",
"applyDefaultPatterns": true
}
],
"linebreak-style": [
"error",
"unix"
],
"lines-around-comment": [
"off"
],
"lines-around-directive": [
"error",
{
"before": "always",
"after": "always"
}
],
"lines-between-class-members": [
"error",
"always",
{
"exceptAfterSingleLine": false
}
],
"max-classes-per-file": [
"error",
1
],
"max-depth": [
"off",
4
],
"max-len": [
"error",
{
"code": 120,
"tabWidth": 2,
"comments": 120,
"ignoreTrailingComments": true,
"ignoreUrls": true,
"ignorePattern": "^import\\s.+\\sfrom\\s.+;$"
}
],
"max-lines": [
"off",
{
"max": 300,
"skipBlankLines": true,
"skipComments": true
}
],
"max-lines-per-function": [
"off",
{
"max": 50,
"skipBlankLines": true,
"skipComments": true,
"IIFEs": true
}
],
"max-nested-callbacks": [
"off"
],
"max-params": [
"off",
3
],
"max-statements": [
"off",
10
],
"max-statements-per-line": [
"off",
{
"max": 1
}
],
"multiline-comment-style": [
"off",
"starred-block"
],
"multiline-ternary": [
"off",
"never"
],
"new-cap": [
"error",
{
"newIsCap": true,
"newIsCapExceptions": [],
"capIsNew": false,
"capIsNewExceptions": [
"Immutable.Map",
"Immutable.Set",
"Immutable.List"
],
"properties": true
}
],
"new-parens": [
"error"
],
"newline-after-var": [
"off"
],
"newline-before-return": [
"off"
],
"newline-per-chained-call": [
"error",
{
"ignoreChainWithDepth": 4
}
],
"no-alert": [
"warn"
],
"no-array-constructor": [
"error"
],
"no-arrow-condition": [
"off"
],
"no-async-promise-executor": [
"error"
],
"no-await-in-loop": [
"error"
],
"no-bitwise": [
"error"
],
"no-buffer-constructor": [
"error"
],
"no-caller": [
"error"
],
"no-case-declarations": [
"error"
],
"no-catch-shadow": [
"off"
],
"no-class-assign": [
"error"
],
"no-comma-dangle": [
"off"
],
"no-compare-neg-zero": [
"error"
],
"no-cond-assign": [
"error",
"always"
],
"no-confusing-arrow": [
"error",
{
"allowParens": true,
"onlyOneSimpleParam": false
}
],
"no-console": [
0
],
"no-const-assign": [
"error"
],
"no-constant-condition": [
"warn"
],
"no-constructor-return": [
"off"
],
"no-continue": [
"error"
],
"no-control-regex": [
"error"
],
"no-debugger": [
"error"
],
"no-delete-var": [
"error"
],
"no-div-regex": [
"off"
],
"no-dupe-args": [
"error"
],
"no-dupe-class-members": [
"error"
],
"no-dupe-else-if": [
"off"
],
"no-dupe-keys": [
"error"
],
"no-duplicate-case": [
"error"
],
"no-duplicate-imports": [
"off"
],
"no-else-return": [
"error",
{
"allowElseIf": false
}
],
"no-empty": [
"error"
],
"no-empty-character-class": [
"error"
],
"no-empty-function": [
"error",
{
"allow": [
"arrowFunctions",
"functions",
"methods"
]
}
],
"no-empty-pattern": [
"error"
],
"no-eq-null": [
"off"
],
"no-eval": [
"error"
],
"no-ex-assign": [
"error"
],
"no-extend-native": [
"error"
],
"no-extra-bind": [
"error"
],
"no-extra-boolean-cast": [
"error"
],
"no-extra-label": [
"error"
],
"no-extra-parens": [
"off",
"all",
{
"conditionalAssign": true,
"nestedBinaryExpressions": false,
"returnAssign": false,
"ignoreJSX": "all",
"enforceForArrowConditionals": false
}
],
"no-extra-semi": [
"error"
],
"no-fallthrough": [
"error"
],
"no-floating-decimal": [
"error"
],
"no-func-assign": [
"error"
],
"no-global-assign": [
"error",
{
"exceptions": []
}
],
"no-implicit-coercion": [
"off",
{
"boolean": false,
"number": true,
"string": true,
"allow": []
}
],
"no-implicit-globals": [
"off"
],
"no-implied-eval": [
"error"
],
"no-import-assign": [
"off"
],
"no-inline-comments": [
"off"
],
"no-inner-declarations": [
"error"
],
"no-invalid-regexp": [
"error"
],
"no-invalid-this": [
"off"
],
"no-irregular-whitespace": [
"error"
],
"no-iterator": [
"error"
],
"no-label-var": [
"error"
],
"no-labels": [
"error",
{
"allowLoop": false,
"allowSwitch": false
}
],
"no-lone-blocks": [
"error"
],
"no-lonely-if": [
"error"
],
"no-loop-func": [
"error"
],
"no-loss-of-precision": [
"off"
],
"no-magic-numbers": [
"off",
{
"ignore": [],
"ignoreArrayIndexes": true,
"enforceConst": true,
"detectObjects": false
}
],
"no-misleading-character-class": [
"error"
],
"no-mixed-operators": [
"error",
{
"groups": [
[
"%",
"**"
],
[
"%",
"+"
],
[
"%",
"-"
],
[
"%",
"*"
],
[
"%",
"/"
],
[
"/",
"*"
],
[
"&",
"|",
"<<",
">>",
">>>"
],
[
"==",
"!=",
"===",
"!=="
],
[
"&&",
"||"
]
],
"allowSamePrecedence": false
}
],
"no-mixed-requires": [
"off",
false
],
"no-mixed-spaces-and-tabs": [
"error"
],
"no-multi-assign": [
"error"
],
"no-multi-spaces": [
"error",
{
"ignoreEOLComments": false
}
],
"no-multi-str": [
"error"
],
"no-multiple-empty-lines": [
"error",
{
"max": 1,
"maxEOF": 0
}
],
"no-native-reassign": [
"off"
],
"no-negated-condition": [
"off"
],
"no-negated-in-lhs": [
"off"
],
"no-nested-ternary": [
"error"
],
"no-new": [
"error"
],
"no-new-func": [
"error"
],
"no-new-object": [
"error"
],
"no-new-require": [
"error"
],
"no-new-symbol": [
"error"
],
"no-new-wrappers": [
"error"
],
"no-nonoctal-decimal-escape": [
"error"
],
"no-obj-calls": [
"error"
],
"no-octal": [
"error"
],
"no-octal-escape": [
"error"
],
"no-param-reassign": [
"error",
{
"props": true,
"ignorePropertyModificationsFor": [
"acc",
"accumulator",
"e",
"ctx",
"context",
"req",
"request",
"res",
"response",
"$scope",
"staticContext"
]
}
],
"no-path-concat": [
"error"
],
"no-plusplus": [
"error"
],
"no-process-env": [
"off"
],
"no-process-exit": [
"off"
],
"no-promise-executor-return": [
"off"
],
"no-proto": [
"error"
],
"no-prototype-builtins": [
"error"
],
"no-redeclare": [
"error"
],
"no-regex-spaces": [
"error"
],
"no-reserved-keys": [
"off"
],
"no-restricted-exports": [
"off",
{
"restrictedNamedExports": [
"default",
"then"
]
}
],
"no-restricted-globals": [
"error",
{
"name": "isFinite",
"message": "Use Number.isFinite instead https://github.com/airbnb/javascript#standard-library--isfinite"
},
{
"name": "isNaN",
"message": "Use Number.isNaN instead https://github.com/airbnb/javascript#standard-library--isnan"
},
"addEventListener",
"blur",
"close",
"closed",
"confirm",
"defaultStatus",
"defaultstatus",
"event",
"external",
"find",
"focus",
"frameElement",
"frames",
"history",
"innerHeight",
"innerWidth",
"length",
"location",
"locationbar",
"menubar",
"moveBy",
"moveTo",
"name",
"onblur",
"onerror",
"onfocus",
"onload",
"onresize",
"onunload",
"open",
"opener",
"opera",
"outerHeight",
"outerWidth",
"pageXOffset",
"pageYOffset",
"parent",
"print",
"removeEventListener",
"resizeBy",
"resizeTo",
"screen",
"screenLeft",
"screenTop",
"screenX",
"screenY",
"scroll",
"scrollbars",
"scrollBy",
"scrollTo",
"scrollX",
"scrollY",
"self",
"status",
"statusbar",
"stop",
"toolbar",
"top"
],
"no-restricted-imports": [
"off",
{
"paths": [],
"patterns": []
}
],
"no-restricted-modules": [
"off"
],
"no-restricted-properties": [
"error",
{
"object": "arguments",
"property": "callee",
"message": "arguments.callee is deprecated"
},
{
"object": "global",
"property": "isFinite",
"message": "Please use Number.isFinite instead"
},
{
"object": "self",
"property": "isFinite",
"message": "Please use Number.isFinite instead"
},
{
"object": "window",
"property": "isFinite",
"message": "Please use Number.isFinite instead"
},
{
"object": "global",
"property": "isNaN",
"message": "Please use Number.isNaN instead"
},
{
"object": "self",
"property": "isNaN",
"message": "Please use Number.isNaN instead"
},
{
"object": "window",
"property": "isNaN",
"message": "Please use Number.isNaN instead"
},
{
"property": "__defineGetter__",
"message": "Please use Object.defineProperty instead."
},
{
"property": "__defineSetter__",
"message": "Please use Object.defineProperty instead."
},
{
"object": "Math",
"property": "pow",
"message": "Use the exponentiation operator (**) instead."
}
],
"no-restricted-syntax": [
"error",
{
"selector": "ForInStatement",
"message": "for..in loops iterate over the entire prototype chain, which is virtually never what you want. Use Object.{keys,values,entries}, and iterate over the resulting array."
},
{
"selector": "ForOfStatement",
"message": "iterators/generators require regenerator-runtime, which is too heavyweight for this guide to allow them. Separately, loops should be avoided in favor of array iterations."
},
{
"selector": "LabeledStatement",
"message": "Labels are a form of GOTO; using them makes code confusing and hard to maintain and understand."
},
{
"selector": "WithStatement",
"message": "`with` is disallowed in strict mode because it makes code impossible to predict and optimize."
}
],
"no-return-assign": [
"error",
"always"
],
"no-return-await": [
"error"
],
"no-script-url": [
"error"
],
"no-self-assign": [
"error",
{
"props": true
}
],
"no-self-compare": [
"error"
],
"no-sequences": [
"error"
],
"no-setter-return": [
"off"
],
"no-shadow": [
"error"
],
"no-shadow-restricted-names": [
"error"
],
"no-space-before-semi": [
"off"
],
"no-spaced-func": [
"error"
],
"no-sparse-arrays": [
"error"
],
"no-sync": [
"off"
],
"no-tabs": [
0
],
"no-template-curly-in-string": [
"error"
],
"no-ternary": [
"off"
],
"no-this-before-super": [
"error"
],
"no-throw-literal": [
"error"
],
"no-trailing-spaces": [
"error",
{
"skipBlankLines": false,
"ignoreComments": false
}
],
"no-undef": [
"error"
],
"no-undef-init": [
"error"
],
"no-undefined": [
"off"
],
"no-underscore-dangle": [
"error",
{
"allow": [
"__REDUX_DEVTOOLS_EXTENSION_COMPOSE__"
],
"allowAfterThis": false,
"allowAfterSuper": false,
"enforceInMethodNames": true,
"allowAfterThisConstructor": false,
"allowFunctionParams": true
}
],
"no-unexpected-multiline": [
"error"
],
"no-unmodified-loop-condition": [
"off"
],
"no-unneeded-ternary": [
"error",
{
"defaultAssignment": false
}
],
"no-unreachable": [
"error"
],
"no-unreachable-loop": [
"off",
{
"ignore": []
}
],
"no-unsafe-finally": [
"error"
],
"no-unsafe-negation": [
"error"
],
"no-unsafe-optional-chaining": [
"error",
{
"disallowArithmeticOperators": true
}
],
"no-unused-expressions": [
"error",
{
"allowShortCircuit": false,
"allowTernary": false,
"allowTaggedTemplates": false,
"enforceForJSX": false
}
],
"no-unused-labels": [
"error"
],
"no-unused-private-class-members": [
"off"
],
"no-unused-vars": [
"warn",
{
"vars": "all",
"args": "after-used",
"ignoreRestSiblings": true
}
],
"no-use-before-define": [
"error",
{
"functions": true,
"classes": true,
"variables": true
}
],
"no-useless-backreference": [
"off"
],
"no-useless-call": [
"off"
],
"no-useless-catch": [
"error"
],
"no-useless-computed-key": [
"error"
],
"no-useless-concat": [
"error"
],
"no-useless-constructor": [
"error"
],
"no-useless-escape": [
"error"
],
"no-useless-rename": [
"error",
{
"ignoreDestructuring": false,
"ignoreImport": false,
"ignoreExport": false
}
],
"no-useless-return": [
"error"
],
"no-var": [
"error"
],
"no-void": [
"error"
],
"no-warning-comments": [
"off",
{
"terms": [
"todo",
"fixme",
"xxx"
],
"location": "start"
}
],
"no-whitespace-before-property": [
"error"
],
"no-with": [
"error"
],
"no-wrap-func": [
"off"
],
"nonblock-statement-body-position": [
"error",
"beside",
{
"overrides": {}
}
],
"object-curly-newline": [
"error",
{
"multiline": true,
"minProperties": 5
}
],
"object-curly-spacing": [
"error",
"always",
{
"objectsInObjects": false
}
],
"object-property-newline": [
"error",
{
"allowAllPropertiesOnSameLine": true,
"allowMultiplePropertiesPerLine": false
}
],
"object-shorthand": [
"error",
"always",
{
"ignoreConstructors": false,
"avoidQuotes": true
}
],
"one-var": [
"error",
"never"
],
"one-var-declaration-per-line": [
"error",
"always"
],
"operator-assignment": [
"error",
"always"
],
"operator-linebreak": [
"error",
"before",
{
"overrides": {
"=": "none"
}
}
],
"padded-blocks": [
"error",
{
"blocks": "never",
"classes": "never",
"switches": "never"
},
{
"allowSingleLineBlocks": true
}
],
"padding-line-between-statements": [
"off"
],
"prefer-arrow-callback": [
"error",
{
"allowNamedFunctions": false,
"allowUnboundThis": true
}
],
"prefer-const": [
"error",
{
"destructuring": "any",
"ignoreReadBeforeAssign": true
}
],
"prefer-destructuring": [
"error",
{
"VariableDeclarator": {
"array": false,
"object": true
},
"AssignmentExpression": {
"array": true,
"object": false
}
},
{
"enforceForRenamedProperties": false
}
],
"prefer-exponentiation-operator": [
"off"
],
"prefer-named-capture-group": [
"off"
],
"prefer-numeric-literals": [
"error"
],
"prefer-object-spread": [
"error"
],
"prefer-promise-reject-errors": [
"error",
{
"allowEmptyReject": true
}
],
"prefer-reflect": [
"off"
],
"prefer-regex-literals": [
"off",
{
"disallowRedundantWrapping": true
}
],
"prefer-rest-params": [
"error"
],
"prefer-spread": [
"error"
],
"prefer-template": [
"error"
],
"quote-props": [
"error",
"as-needed",
{
"keywords": false,
"unnecessary": true,
"numbers": false
}
],
"quotes": [
"error",
"single"
],
"radix": [
"error"
],
"react-hooks/exhaustive-deps": [
"warn"
],
"react-hooks/rules-of-hooks": [
"error"
],
"react/boolean-prop-naming": [
"off",
{
"propTypeNames": [
"bool",
"mutuallyExclusiveTrueProps"
],
"rule": "^(is|has)[A-Z]([A-Za-z0-9]?)+",
"message": ""
}
],
"react/button-has-type": [
"error",
{
"button": true,
"submit": true,
"reset": false
}
],
"react/default-props-match-prop-types": [
"error",
{
"allowRequiredDefaults": false
}
],
"react/destructuring-assignment": [
"off",
"always"
],
"react/display-name": [
"off",
{
"ignoreTranspilerName": false
}
],
"react/forbid-component-props": [
"off",
{
"forbid": []
}
],
"react/forbid-dom-props": [
"off",
{
"forbid": []
}
],
"react/forbid-elements": [
"off",
{
"forbid": []
}
],
"react/forbid-foreign-prop-types": [
"warn",
{
"allowInPropTypes": true
}
],
"react/forbid-prop-types": [
"error",
{
"forbid": [
"any",
"array",
"object"
],
"checkContextTypes": true,
"checkChildContextTypes": true
}
],
"react/function-component-definition": [
"off",
{
"namedComponents": "function-expression",
"unnamedComponents": "function-expression"
}
],
"react/jsx-boolean-value": [
"error",
"never",
{
"always": []
}
],
"react/jsx-child-element-spacing": [
"off"
],
"react/jsx-closing-bracket-location": [
"error",
"line-aligned"
],
"react/jsx-closing-tag-location": [
"error"
],
"react/jsx-curly-brace-presence": [
"error",
{
"props": "never",
"children": "never"
}
],
"react/jsx-curly-newline": [
"error",
{
"multiline": "consistent",
"singleline": "consistent"
}
],
"react/jsx-curly-spacing": [
"error",
"never",
{
"allowMultiline": true
}
],
"react/jsx-equals-spacing": [
"error",
"never"
],
"react/jsx-filename-extension": [
"error",
{
"extensions": [
".jsx"
]
}
],
"react/jsx-first-prop-new-line": [
"error",
"multiline-multiprop"
],
"react/jsx-fragments": [
"error",
"syntax"
],
"react/jsx-handler-names": [
"off",
{
"eventHandlerPrefix": "handle",
"eventHandlerPropPrefix": "on"
}
],
"react/jsx-indent": [
2,
"tab"
],
"react/jsx-indent-props": [
2,
"tab"
],
"react/jsx-key": [
"off"
],
"react/jsx-max-depth": [
"off"
],
"react/jsx-max-props-per-line": [
"error",
{
"maximum": 1,
"when": "multiline"
}
],
"react/jsx-newline": [
"off"
],
"react/jsx-no-bind": [
"error",
{
"ignoreRefs": true,
"allowArrowFunctions": true,
"allowFunctions": false,
"allowBind": false,
"ignoreDOMComponents": true
}
],
"react/jsx-no-comment-textnodes": [
"error"
],
"react/jsx-no-constructed-context-values": [
"error"
],
"react/jsx-no-duplicate-props": [
"error",
{
"ignoreCase": true
}
],
"react/jsx-no-literals": [
"off",
{
"noStrings": true
}
],
"react/jsx-no-script-url": [
"off",
[
{
"name": "Link",
"props": [
"to"
]
}
]
],
"react/jsx-no-target-blank": [
"error",
{
"enforceDynamicLinks": "always",
"links": true,
"forms": false
}
],
"react/jsx-no-undef": [
"error"
],
"react/jsx-no-useless-fragment": [
"off"
],
"react/jsx-one-expression-per-line": [
"error",
{
"allow": "single-child"
}
],
"react/jsx-pascal-case": [
"error",
{
"allowAllCaps": true,
"ignore": []
}
],
"react/jsx-props-no-multi-spaces": [
"error"
],
"react/jsx-props-no-spreading": [
"error",
{
"html": "enforce",
"custom": "enforce",
"explicitSpread": "ignore",
"exceptions": []
}
],
"react/jsx-sort-default-props": [
"off",
{
"ignoreCase": true
}
],
"react/jsx-sort-prop-types": [
"off"
],
"react/jsx-sort-props": [
"off",
{
"ignoreCase": true,
"callbacksLast": false,
"shorthandFirst": false,
"shorthandLast": false,
"noSortAlphabetically": false,
"reservedFirst": true
}
],
"react/jsx-space-before-closing": [
"off",
"always"
],
"react/jsx-tag-spacing": [
"error",
{
"closingSlash": "never",
"beforeSelfClosing": "always",
"afterOpening": "never",
"beforeClosing": "never"
}
],
"react/jsx-uses-react": [
"error"
],
"react/jsx-uses-vars": [
"error"
],
"react/jsx-wrap-multilines": [
"error",
{
"declaration": "parens-new-line",
"assignment": "parens-new-line",
"return": "parens-new-line",
"arrow": "parens-new-line",
"condition": "parens-new-line",
"logical": "parens-new-line",
"prop": "parens-new-line"
}
],
"react/no-access-state-in-setstate": [
"error"
],
"react/no-adjacent-inline-elements": [
"off"
],
"react/no-array-index-key": [
"error"
],
"react/no-arrow-function-lifecycle": [
"error"
],
"react/no-children-prop": [
"error"
],
"react/no-danger": [
"warn"
],
"react/no-danger-with-children": [
"error"
],
"react/no-deprecated": [
"error"
],
"react/no-did-mount-set-state": [
"off"
],
"react/no-did-update-set-state": [
"error"
],
"react/no-direct-mutation-state": [
"off"
],
"react/no-find-dom-node": [
"error"
],
"react/no-invalid-html-attribute": [
"error"
],
"react/no-is-mounted": [
"error"
],
"react/no-multi-comp": [
"off"
],
"react/no-namespace": [
"error"
],
"react/no-redundant-should-component-update": [
"error"
],
"react/no-render-return-value": [
"error"
],
"react/no-set-state": [
"off"
],
"react/no-string-refs": [
"error"
],
"react/no-this-in-sfc": [
"error"
],
"react/no-typos": [
"error"
],
"react/no-unescaped-entities": [
"error"
],
"react/no-unknown-property": [
"error"
],
"react/no-unsafe": [
"off"
],
"react/no-unstable-nested-components": [
"error"
],
"react/no-unused-class-component-methods": [
"error"
],
"react/no-unused-prop-types": [
"error",
{
"customValidators": [],
"skipShapeProps": true
}
],
"react/no-unused-state": [
"error"
],
"react/no-will-update-set-state": [
"error"
],
"react/prefer-es6-class": [
"error",
"always"
],
"react/prefer-exact-props": [
"error"
],
"react/prefer-read-only-props": [
"off"
],
"react/prefer-stateless-function": [
"error",
{
"ignorePureComponents": true
}
],
"react/prop-types": [
"error",
{
"ignore": [],
"customValidators": [],
"skipUndeclared": false
}
],
"react/react-in-jsx-scope": [
"error"
],
"react/require-default-props": [
"error",
{
"forbidDefaultForRequired": true
}
],
"react/require-optimization": [
"off",
{
"allowDecorators": []
}
],
"react/require-render-return": [
"error"
],
"react/self-closing-comp": [
"error"
],
"react/sort-comp": [
"error",
{
"order": [
"static-variables",
"static-methods",
"instance-variables",
"lifecycle",
"/^handle.+$/",
"/^on.+$/",
"getters",
"setters",
"/^(get|set)(?!(InitialState$|DefaultProps$|ChildContext$)).+$/",
"instance-methods",
"everything-else",
"rendering"
],
"groups": {
"lifecycle": [
"displayName",
"propTypes",
"contextTypes",
"childContextTypes",
"mixins",
"statics",
"defaultProps",
"constructor",
"getDefaultProps",
"getInitialState",
"state",
"getChildContext",
"getDerivedStateFromProps",
"componentWillMount",
"UNSAFE_componentWillMount",
"componentDidMount",
"componentWillReceiveProps",
"UNSAFE_componentWillReceiveProps",
"shouldComponentUpdate",
"componentWillUpdate",
"UNSAFE_componentWillUpdate",
"getSnapshotBeforeUpdate",
"componentDidUpdate",
"componentDidCatch",
"componentWillUnmount"
],
"rendering": [
"/^render.+$/",
"render"
]
}
}
],
"react/sort-prop-types": [
"off",
{
"ignoreCase": true,
"callbacksLast": false,
"requiredFirst": false,
"sortShapeProp": true
}
],
"react/state-in-constructor": [
"error",
"always"
],
"react/static-property-placement": [
"error",
"property assignment"
],
"react/style-prop-object": [
"error"
],
"react/void-dom-elements-no-children": [
"error"
],
"require-atomic-updates": [
"off"
],
"require-await": [
"off"
],
"require-jsdoc": [
"off"
],
"require-unicode-regexp": [
"off"
],
"require-yield": [
"error"
],
"rest-spread-spacing": [
"error",
"never"
],
"semi": [
"error",
"always"
],
"semi-spacing": [
"error",
{
"before": false,
"after": true
}
],
"semi-style": [
"error",
"last"
],
"sort-imports": [
"off",
{
"ignoreCase": false,
"ignoreDeclarationSort": false,
"ignoreMemberSort": false,
"memberSyntaxSortOrder": [
"none",
"all",
"multiple",
"single"
]
}
],
"sort-keys": [
"off",
"asc",
{
"caseSensitive": false,
"natural": true
}
],
"sort-vars": [
"off"
],
"space-after-function-name": [
"off"
],
"space-after-keywords": [
"off"
],
"space-before-blocks": [
"error"
],
"space-before-function-paren": [
"error",
{
"anonymous": "always",
"named": "never",
"asyncArrow": "always"
}
],
"space-before-function-parentheses": [
"off"
],
"space-before-keywords": [
"off"
],
"space-in-brackets": [
"off"
],
"space-in-parens": [
"error",
"never"
],
"space-infix-ops": [
"error"
],
"space-return-throw-case": [
"off"
],
"space-unary-ops": [
"error",
{
"words": true,
"nonwords": false,
"overrides": {}
}
],
"space-unary-word-ops": [
"off"
],
"spaced-comment": [
"error",
"always",
{
"line": {
"exceptions": [
"-",
"+"
],
"markers": [
"=",
"!",
"/"
]
},
"block": {
"exceptions": [
"-",
"+"
],
"markers": [
"=",
"!",
":",
"::"
],
"balanced": true
}
}
],
"standard/array-bracket-even-spacing": [
"off"
],
"standard/computed-property-even-spacing": [
"off"
],
"standard/object-curly-even-spacing": [
"off"
],
"strict": [
"error",
"never"
],
"switch-colon-spacing": [
"error",
{
"after": true,
"before": false
}
],
"symbol-description": [
"error"
],
"template-curly-spacing": [
"error"
],
"template-tag-spacing": [
"error",
"never"
],
"unicode-bom": [
"error",
"never"
],
"unicorn/empty-brace-spaces": [
"off"
],
"unicorn/no-nested-ternary": [
"off"
],
"unicorn/number-literal-case": [
"off"
],
"use-isnan": [
"error"
],
"valid-jsdoc": [
"off"
],
"valid-typeof": [
"error",
{
"requireStringLiterals": true
}
],
"vars-on-top": [
"error"
],
"vue/array-bracket-newline": [
"off"
],
"vue/array-bracket-spacing": [
"off"
],
"vue/arrow-spacing": [
"off"
],
"vue/block-spacing": [
"off"
],
"vue/block-tag-newline": [
"off"
],
"vue/brace-style": [
"off"
],
"vue/comma-dangle": [
"off"
],
"vue/comma-spacing": [
"off"
],
"vue/comma-style": [
"off"
],
"vue/dot-location": [
"off"
],
"vue/func-call-spacing": [
"off"
],
"vue/html-closing-bracket-newline": [
"off"
],
"vue/html-closing-bracket-spacing": [
"off"
],
"vue/html-end-tags": [
"off"
],
"vue/html-indent": [
"off"
],
"vue/html-quotes": [
"off"
],
"vue/html-self-closing": [
0
],
"vue/key-spacing": [
"off"
],
"vue/keyword-spacing": [
"off"
],
"vue/max-attributes-per-line": [
"off"
],
"vue/max-len": [
0
],
"vue/multiline-html-element-content-newline": [
"off"
],
"vue/mustache-interpolation-spacing": [
"off"
],
"vue/no-extra-parens": [
"off"
],
"vue/no-multi-spaces": [
"off"
],
"vue/no-spaces-around-equal-signs-in-attribute": [
"off"
],
"vue/object-curly-newline": [
"off"
],
"vue/object-curly-spacing": [
"off"
],
"vue/object-property-newline": [
"off"
],
"vue/operator-linebreak": [
"off"
],
"vue/quote-props": [
"off"
],
"vue/script-indent": [
"off"
],
"vue/singleline-html-element-content-newline": [
"off"
],
"vue/space-in-parens": [
"off"
],
"vue/space-infix-ops": [
"off"
],
"vue/space-unary-ops": [
"off"
],
"vue/template-curly-spacing": [
"off"
],
"wrap-iife": [
"error",
"outside",
{
"functionPrototypeMethods": false
}
],
"wrap-regex": [
"off"
],
"yield-star-spacing": [
"error",
"after"
],
"yoda": [
"error"
]
},
"settings": {
"react": {
"version": "detect",
"pragma": "React"
},
"import/resolver": {
"node": {
"extensions": [
".js",
".jsx",
".json"
]
}
},
"propWrapperFunctions": [
"forbidExtraProps",
"exact",
"Object.freeze"
],
"import/extensions": [
".js",
".mjs",
".jsx"
],
"import/core-modules": [],
"import/ignore": [
"node_modules",
"\\.(coffee|scss|css|less|hbs|svg|json)$"
]
}
}