Last active
September 26, 2016 09:35
-
-
Save MatthieuLemoine/cc2ae0cc3500929af04b3dcd9ad3fcfc to your computer and use it in GitHub Desktop.
Node ES6 eslint config
This file contains hidden or 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
{ | |
"extends": "airbnb", | |
"env" : { | |
"node" : true | |
}, | |
"ecmaFeatures": { | |
"modules" : false | |
}, | |
"rules" : { | |
"no-multi-spaces" : 0, | |
"key-spacing" : [1,{ | |
"beforeColon" : true, | |
"afterColon" : true, | |
"mode" : "minimum" | |
}], | |
"no-use-before-define" : 0, | |
"no-param-reassign" : 0, | |
"comma-dangle" : 0, | |
"new-cap" : 0, | |
"no-confusing-arrow" : 0, | |
"arrow-parens" : 0, | |
"no-console" : 0, | |
"no-underscore-dangle" : 0 | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment