auto-complete-element/.eslintrc.json

38 строки
694 B
JSON
Исходник Обычный вид История

2018-04-11 22:47:25 +03:00
{
2021-04-26 11:52:42 +03:00
"root": true,
2018-04-11 22:47:25 +03:00
"extends": [
"plugin:github/browser",
2020-06-04 19:15:20 +03:00
"plugin:github/recommended",
2020-05-21 01:24:33 +03:00
"plugin:github/typescript"
2018-04-11 22:47:25 +03:00
],
"rules": {
"github/no-then": "off",
"no-invalid-this": "off"
},
2020-05-21 01:24:33 +03:00
"globals": {
2020-06-04 19:15:20 +03:00
"AutocompleteElement": "readonly"
2020-05-21 01:24:33 +03:00
},
"overrides": [
{
2020-05-21 01:24:33 +03:00
"files": ["test/*.js", "rollup.config.js"],
"parser": "espree",
"parserOptions": {
"ecmaVersion": 8
},
"rules": {
"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
}