Skip to content

Instantly share code, notes, and snippets.

@fguisso
Created October 7, 2016 20:51
Show Gist options
  • Save fguisso/869b4a41c43c58bd4c03cdf2154144e0 to your computer and use it in GitHub Desktop.
Save fguisso/869b4a41c43c58bd4c03cdf2154144e0 to your computer and use it in GitHub Desktop.
{
"env": {
"node": true,
"es6": true
},
"extends": "airbnb-base",
"rules": {
"no-console": [
"error"
],
"max-len": [
"error",
120
],
"eqeqeq": [
"error",
"smart"
],
"prefer-arrow-callback": [
"error",
{
"allowNamedFunctions": true
}
],
"space-before-function-paren": [
"error",
"never"
],
"quote-props": [
"error",
"consistent-as-needed"
]
}
}
"devDependencies": {
"eslint": "^3.6.1",
"eslint-config-airbnb-base": "^8.0.0",
"eslint-plugin-import": "^1.16.0"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment