Skip to content

Instantly share code, notes, and snippets.

@Venugopal46
Created November 2, 2016 04:43
Show Gist options
  • Save Venugopal46/f0c458c16e1b193da9580e31eae71546 to your computer and use it in GitHub Desktop.
Save Venugopal46/f0c458c16e1b193da9580e31eae71546 to your computer and use it in GitHub Desktop.
eslint config file
{
"env": {
"browser": true,
"node": true,
"es6": true
},
"globals": {
"React": true
},
"parserOptions": {
"ecmaVersion": 6,
"ecmaFeatures": {
"jsx": true
}
},
"plugins": [
"react"
],
"extends": "airbnb",
"rules": {
"no-unused-vars": 1,
"no-unused-expressions": 1,
"linebreak-style": 0,
"import/no-extraneous-dependencies": 0,
"comma-dangle": 0,
"func-names": 0,
"react/prefer-stateless-function": 0,
"react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }],
"react/forbid-prop-types": 0,
"max-len": 0
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment