inline test configuration to root eslint config

This commit is contained in:
Kristján Oddsson 2019-02-25 09:44:47 +00:00
Родитель e839822c4b
Коммит 5e1e627d26
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: F5C58CF9F8FE5D63
2 изменённых файлов: 15 добавлений и 13 удалений

Просмотреть файл

@ -3,5 +3,19 @@
"plugin:github/es6",
"plugin:github/browser",
"plugin:github/flow"
],
"overrides": [
{
"files": "test/**/*.js",
"rules": {
"flowtype/require-valid-file-annotation": "off"
},
"env": {
"mocha": true
},
"globals": {
"assert": true
}
}
]
}
}

Просмотреть файл

@ -1,12 +0,0 @@
{
"rules": {
"flowtype/require-valid-file-annotation": "off"
},
"env": {
"mocha": true
},
"globals": {
"assert": true
},
"extends": "../.eslintrc.json"
}