Skip to content

Instantly share code, notes, and snippets.

@danylkaaa
Created July 10, 2018 20:40
Show Gist options
  • Save danylkaaa/157d967a94f94860b628462639c0d33e to your computer and use it in GitHub Desktop.
Save danylkaaa/157d967a94f94860b628462639c0d33e to your computer and use it in GitHub Desktop.
{
"rules": {
"import/no-unresolved":false,
"indent": [
2,
2,
{
"SwitchCase": 1
}
],
"space-before-function-paren": [
2,
{
"anonymous": "always",
"named": "never"
}
],
"no-use-before-define": [
2,
"nofunc"
],
"comma-dangle": [
0
],
"import/no-extraneous-dependencies": [
"error",
{
"devDependencies": true
}
],
"no-underscore-dangle": [
0
],
"prefer-arrow-callback": [
0
],
"import/order": false
},
"env": {
"node": true,
"mocha": true
},
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true,
"experimentalObjectRestSpread": true
}
},
"extends": [
"eslint:recommended",
"airbnb-base"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment