Skip to content

Instantly share code, notes, and snippets.

@qleguennec
Created August 20, 2017 21:11
Show Gist options
  • Save qleguennec/b90f80a5fb9beb2c3af7c5f9bee83685 to your computer and use it in GitHub Desktop.
Save qleguennec/b90f80a5fb9beb2c3af7c5f9bee83685 to your computer and use it in GitHub Desktop.
{
"parser": "babel-eslint",
"plugins": [ "react" ],
"env": {
"browser": true,
"es6": true,
"node": true
},
"rules": {
"consistent-return": [0],
"key-spacing": [0],
"quotes": [0],
"new-cap": [0],
"no-multi-spaces": [0],
"no-shadow": [0],
"no-unused-vars": [1],
"no-use-before-define": [2, "nofunc"],
"react/jsx-no-undef": 1,
"react/jsx-uses-react": 1,
"react/jsx-uses-vars": 1
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment