Last active
January 12, 2018 08:23
-
-
Save sayanriju/3d3d26336c9ed2330903d4b90abcfaa2 to your computer and use it in GitHub Desktop.
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
{ | |
"env": { | |
"es6": true, | |
"node": true, | |
"mocha": true | |
}, | |
"extends": "airbnb-base", | |
"rules": { | |
"func-names": ["error", "never"], | |
"comma-dangle": ["error", "only-multiline"], | |
"semi": ["warn", "never"], | |
"quotes": ["warn", "double"], | |
"max-len": [ "warn", { "ignoreComments": true, "ignoreTrailingComments": true, "ignoreUrls": true, "ignoreStrings": true, "ignoreTemplateLiterals": true, "ignoreRegExpLiterals": true } ], | |
"no-param-reassign": ["error", { "props": false }], | |
"no-console": 1, | |
"no-unused-vars": 1, | |
"prefer-const": 1, | |
"no-var": 1, | |
"eol-last": 1, | |
"padded-blocks": 1, | |
"import/no-unresolved": 1, | |
"import/newline-after-import": 0, | |
"no-underscore-dangle": 0 | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment