Skip to content

Instantly share code, notes, and snippets.

@mezod
Created March 20, 2019 20:10
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 mezod/5716de4b023f50e4d7a1fa43a5e3178b to your computer and use it in GitHub Desktop.
Save mezod/5716de4b023f50e4d7a1fa43a5e3178b to your computer and use it in GitHub Desktop.
{
"parser": "babel-eslint",
"parserOptions": {
"ecmaFeatures": {
"jsx": true,
"ecmaVersion": 8,
"experimentalObjectRestSpread": true
}
},
"rules": {
"max-len": [1, 100, 4],
"react/prefer-stateless-function": 0,
"import/no-unresolved": 0,
"react/jsx-closing-bracket-location": 0,
"react/jsx-first-prop-new-line": 0,
"react/jsx-no-bind": 0,
"no-return-assign": 0,
"prefer-template": 0,
"camelcase": 0,
"comma-dangle": 0,
"quotes": 0,
"no-unused-expressions": 0,
"space-before-function-paren": 0,
"curly": 0,
"indent": 0,
"react/prop-types": 0,
"react/jsx-filename-extension": 0,
"react/jsx-indent": 0,
"arrow-parens": 0,
"operator-linebreak": 0,
"nonblock-statement-body-position": 0,
"no-plusplus": 0,
"object-curly-newline": 0,
"implicit-arrow-linebreak": 0,
"react/jsx-one-expression-per-line": 0,
"no-nested-ternary": 0,
"no-restricted-syntax": 0,
"react/destructuring-assignment": 0,
"class-methods-use-this": 0,
"react/jsx-wrap-multilines": 0,
"function-paren-newline": 0,
"no-continue": 0
},
"extends": "airbnb"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment