30 строки
570 B
JSON
30 строки
570 B
JSON
{
|
|
"root": true,
|
|
"plugins": ["github"],
|
|
"extends": ["plugin:github/browser", "plugin:github/recommended", "plugin:github/typescript"],
|
|
"globals": {
|
|
"TextExpanderElement": "readonly"
|
|
},
|
|
"rules": {
|
|
"no-invalid-this": "off"
|
|
},
|
|
"overrides": [
|
|
{
|
|
"files": "test/**/*.js",
|
|
"rules": {
|
|
"github/unescaped-html-literal": "off"
|
|
}
|
|
},
|
|
{
|
|
"files": "test/**/*.js",
|
|
"excludedFiles": "test/karma.config.js",
|
|
"env": {
|
|
"mocha": true
|
|
},
|
|
"globals": {
|
|
"assert": true
|
|
}
|
|
}
|
|
]
|
|
}
|