Skip to content

Instantly share code, notes, and snippets.

@truongtv22
Last active November 28, 2018 02:59
Show Gist options
  • Save truongtv22/59a619e323aecf61e341347bb1ce0533 to your computer and use it in GitHub Desktop.
Save truongtv22/59a619e323aecf61e341347bb1ce0533 to your computer and use it in GitHub Desktop.
{
"plugins": [
"react"
],
"env": {
"es6": true,
"node": true
},
"parser": "babel-eslint",
"parserOptions": {
"sourceType": "module"
},
"extends": [
"airbnb",
"eslint:recommended",
"plugin:react/recommended"
],
"settings": {
"import/resolver": {
"babel-module": {
"extensions": [".js"]
}
},
"import/extensions": [".js"]
},
"rules": {
"no-console": 0,
"react/sort-comp": 0,
"react/jsx-indent": 0,
"react/prop-types": 0,
"react/jsx-no-bind": 0,
"react/display-name": 0,
"react/no-multi-comp": 0,
"react/jsx-indent-props": 0,
"react/self-closing-comp": 0,
"react/forbid-prop-types": 0,
"react/jsx-boolean-value": 0,
"react/no-array-index-key": 0,
"react/jsx-wrap-multilines": 0,
"react/require-default-props": 0,
"react/jsx-filename-extension": 0,
"react/destructuring-assignment": 0,
"react/prefer-stateless-function": 0,
"react/forbid-foreign-prop-types": 0,
"import/no-unresolved": 0,
"import/no-mutable-exports": 0,
"import/prefer-default-export": 0,
"import/no-extraneous-dependencies": 0
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment