Created
August 24, 2022 23:32
-
-
Save lucas-barake/67384f6940b0b6f25e8ef745a50c4cf0 to your computer and use it in GitHub Desktop.
Warning ESLint Rules
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| "rules": { | |
| "indent": [1, 2], | |
| "quotes": [1, "double"], | |
| "semi": [1, "always"], | |
| "jsx-quotes": [1, "prefer-double"], | |
| "react/react-in-jsx-scope": "off", | |
| "react/button-has-type": [1], | |
| "react/prop-types": [1], | |
| "react/jsx-key": [1], | |
| "react/no-array-index-key": [1], | |
| "no-unused-vars": [1], | |
| "constructor-super": [1], | |
| "for-direction": [1], | |
| "getter-return": [1], | |
| "no-async-promise-executor": [1], | |
| "no-case-declarations": [1], | |
| "no-class-assign": [1], | |
| "no-compare-neg-zero": [1], | |
| "no-cond-assign": [1], | |
| "no-const-assign": [1], | |
| "no-constant-condition": [1], | |
| "no-control-regex": [1], | |
| "no-debugger": [1], | |
| "no-delete-var": [1], | |
| "no-dupe-args": [1], | |
| "no-dupe-class-members": [1], | |
| "no-dupe-else-if": [1], | |
| "no-dupe-keys": [1], | |
| "no-duplicate-case": [1], | |
| "no-empty": [1], | |
| "no-empty-character-class": [1], | |
| "no-empty-pattern": [1], | |
| "no-ex-assign": [1], | |
| "no-extra-boolean-cast": [1], | |
| "no-extra-semi": [1], | |
| "no-fallthrough": [1], | |
| "no-func-assign": [1], | |
| "no-global-assign": [1], | |
| "no-import-assign": [1], | |
| "no-inner-declarations": [1], | |
| "no-invalid-regexp": [1], | |
| "no-irregular-whitespace": [1], | |
| "no-loss-of-precision": [1], | |
| "no-misleading-character-class": [1], | |
| "no-mixed-spaces-and-tabs": [1], | |
| "no-new-symbol": [1], | |
| "no-nonoctal-decimal-escape": [1], | |
| "no-obj-calls": [1], | |
| "no-octal": [1], | |
| "no-prototype-builtins": [1], | |
| "no-redeclare": [1], | |
| "no-regex-spaces": [1], | |
| "no-self-assign": [1], | |
| "no-setter-return": [1], | |
| "no-shadow-restricted-names": [1], | |
| "no-sparse-arrays": [1], | |
| "no-this-before-super": [1], | |
| "no-undef": [1], | |
| "no-unexpected-multiline": [1], | |
| "no-unreachable": [1], | |
| "no-unsafe-finally": [1], | |
| "no-unsafe-negation": [1], | |
| "no-unsafe-optional-chaining": [1], | |
| "no-unused-labels": [1], | |
| "no-useless-backreference": [1], | |
| "no-useless-catch": [1], | |
| "no-useless-escape": [1], | |
| "no-with": [1], | |
| "require-yield": [1], | |
| "use-isnan": [1], | |
| "valid-typeof": [1] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment