auto-complete-element/.eslintrc.json

31 строка
559 B
JSON

{
"extends": [
"plugin:github/browser",
"plugin:github/es6",
"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
}
}
]
}