Created
October 7, 2016 20:51
-
-
Save fguisso/869b4a41c43c58bd4c03cdf2154144e0 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"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" | |
] | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"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