{ | |
"extends": "airbnb", | |
"rules": { | |
"no-undef": 2, | |
"react/jsx-no-undef": 2, | |
"no-const-assign":2, | |
"space-before-function-paren": [2,"always"], | |
"max-len": [2,80,4], | |
"max-params":[2,6], | |
"eqeqeq": [2,"smart"], | |
"quotes": [2,"double"], | |
"semi": [2, "never"], | |
"indent": [2,4], | |
"no-constant-condition":0, | |
"no-eq-null": 0, | |
"no-use-before-define": 0, | |
"no-nested-ternary":0, | |
"key-spacing": 0, | |
"vars-on-top": 0, | |
"camelcase": 0, | |
"spaced-comment":0, | |
"no-param-reassign":0, | |
"new-cap":0, | |
"react/sort-comp": 0, | |
"default-case": 0, | |
"no-else-return": 0, | |
"one-var": 0, | |
"no-floating-decimal": 0, | |
"guard-for-in": 0, | |
"id-length":0, | |
"no-multi-spaces":0, | |
"comma-dangle": 0, | |
"react/no-multi-comp": 0, | |
"comma-spacing": 0, | |
"react/prop-types": 0, | |
"no-shadow": 0, | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment