chore: Small tweaks to the eslint config files (follow-up for #167)
This commit is contained in:
parent
83ec9e70ad
commit
cdbb3115e8
|
@ -0,0 +1,2 @@
|
||||||
|
coverage/
|
||||||
|
dist/
|
|
@ -8,10 +8,8 @@
|
||||||
},
|
},
|
||||||
|
|
||||||
"env": {
|
"env": {
|
||||||
"browser": true,
|
|
||||||
"es6": true,
|
"es6": true,
|
||||||
"node": true,
|
"node": true,
|
||||||
"webextensions": true,
|
|
||||||
},
|
},
|
||||||
|
|
||||||
"globals": {
|
"globals": {
|
||||||
|
|
|
@ -1,9 +1,11 @@
|
||||||
{
|
{
|
||||||
"env": {
|
"env": {
|
||||||
|
"browser": true,
|
||||||
"node": false,
|
"node": false,
|
||||||
|
"webextensions": true,
|
||||||
},
|
},
|
||||||
"globals": {
|
"globals": {
|
||||||
// Allow the `module` global, but not the `require(…)` function
|
// Allow the `module` global, but not the `require(…)` function
|
||||||
"module": false,
|
"module": false,
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,8 @@
|
||||||
{
|
{
|
||||||
"env": {
|
"env": {
|
||||||
|
"browser": true,
|
||||||
"mocha": true,
|
"mocha": true,
|
||||||
|
"webextensions": true,
|
||||||
},
|
},
|
||||||
"rules": {
|
"rules": {
|
||||||
"max-nested-callbacks": ["warn", 6]
|
"max-nested-callbacks": ["warn", 6]
|
||||||
|
|
Loading…
Reference in New Issue