Skip to content

Instantly share code, notes, and snippets.

@tkheyfets
Created December 10, 2019 03:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tkheyfets/e31e54c0560a1174e3f61452f0899cfd to your computer and use it in GitHub Desktop.
Save tkheyfets/e31e54c0560a1174e3f61452f0899cfd to your computer and use it in GitHub Desktop.
{
"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