2016-09-13 19:22:27 +00:00
|
|
|
{
|
|
|
|
"parser": "babel-eslint",
|
2019-01-17 00:03:36 +00:00
|
|
|
"extends": ["airbnb", "prettier"],
|
2019-01-23 17:54:42 +00:00
|
|
|
"plugins": ["babel"],
|
2016-09-13 19:22:27 +00:00
|
|
|
"globals": {
|
2019-01-23 17:54:42 +00:00
|
|
|
"describe": true,
|
|
|
|
"it": true,
|
|
|
|
"fit": true,
|
|
|
|
"jasmine": true,
|
|
|
|
"beforeEach": true,
|
|
|
|
"beforeAll": true,
|
|
|
|
"afterAll": true
|
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,
|
|
|
|
"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": [
|
2019-01-23 17:54:42 +00:00
|
|
|
"error",
|
|
|
|
{ "max": 1, "maxEOF": 0, "maxBOF": 0 }
|
2016-10-27 18:00:27 +00:00
|
|
|
],
|
2022-09-08 20:46:26 +00:00
|
|
|
"import/no-unresolved": false,
|
|
|
|
"import/no-extraneous-dependencies": [
|
|
|
|
"error",
|
|
|
|
{
|
|
|
|
"devDependencies": [
|
|
|
|
"**/*.test.js",
|
|
|
|
"scripts/proxy-browser-test.js",
|
|
|
|
"rollup.config*js"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
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
|
|
|
}
|
2019-01-23 17:54:42 +00:00
|
|
|
}
|
2016-09-13 19:22:27 +00:00
|
|
|
}
|