Skip to content

Instantly share code, notes, and snippets.

@sayanriju
Last active January 12, 2018 08:23
Show Gist options
  • Save sayanriju/3d3d26336c9ed2330903d4b90abcfaa2 to your computer and use it in GitHub Desktop.
Save sayanriju/3d3d26336c9ed2330903d4b90abcfaa2 to your computer and use it in GitHub Desktop.
{
"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