2016-09-13 19:22:27 +00:00
|
|
|
// Use this file as a starting point for your project's .eslintrc.
|
|
|
|
// Copy this file, and add rule overrides as needed.
|
|
|
|
{
|
|
|
|
"parser": "babel-eslint",
|
|
|
|
"extends": "airbnb",
|
|
|
|
"plugins": [
|
|
|
|
"babel"
|
|
|
|
],
|
|
|
|
"globals": {
|
|
|
|
/* mocha */
|
|
|
|
"describe",
|
2016-09-30 16:26:25 +00:00
|
|
|
"it",
|
|
|
|
"fit",
|
|
|
|
"jasmine",
|
|
|
|
"beforeEach",
|
2016-10-28 21:54:12 +00:00
|
|
|
"beforeAll",
|
|
|
|
"afterAll",
|
2016-09-13 19:22:27 +00:00
|
|
|
},
|
|
|
|
"rules": {
|
|
|
|
"no-param-reassign": 0,
|
|
|
|
"no-control-regex": 0,
|
|
|
|
"import/prefer-default-export": 0,
|
|
|
|
"generator-star-spacing": 0,
|
|
|
|
"babel/generator-star-spacing": 0,
|
|
|
|
"func-names": 0,
|
2016-09-14 14:14:19 +00:00
|
|
|
// "no-useless-escape": 0,
|
2016-09-13 19:22:27 +00:00
|
|
|
"no-confusing-arrow": 0,
|
2016-09-14 20:00:36 +00:00
|
|
|
"camelcase": 0,
|
2016-10-27 18:00:27 +00:00
|
|
|
"no-multiple-empty-lines": [
|
|
|
|
"error", {"max": 1, "maxEOF": 0, "maxBOF": 0}
|
|
|
|
],
|
|
|
|
},
|
|
|
|
"options": {
|
|
|
|
"no-multiple-empty-lines": {
|
|
|
|
"max": 1,
|
|
|
|
"maxEOF": 0,
|
|
|
|
},
|
2016-09-13 19:22:27 +00:00
|
|
|
},
|
|
|
|
"settings": {
|
|
|
|
"import/resolver": {
|
2016-09-14 14:14:19 +00:00
|
|
|
"babel-module": {}
|
2016-09-13 19:22:27 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
}
|