auto-complete-element/.eslintrc.json

31 строка
559 B
JSON
Исходник Обычный вид История

2018-04-11 22:47:25 +03:00
{
"extends": [
"plugin:github/browser",
"plugin:github/es6",
2018-04-11 22:47:25 +03:00
"plugin:github/flow"
],
"rules": {
"github/no-then": "off",
"no-invalid-this": "off"
},
"overrides": [
{
"files": "test/**/*.js",
"rules": {
"flowtype/require-valid-file-annotation": "off",
"github/unescaped-html-literal": "off"
}
},
{
"files": "test/**/*.js",
"excludedFiles": "test/karma.config.js",
"env": {
"mocha": true
},
"globals": {
"assert": true
}
}
]
2018-04-11 22:47:25 +03:00
}