Created
July 10, 2018 20:40
-
-
Save danylkaaa/157d967a94f94860b628462639c0d33e 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
{ | |
"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