23 строки
477 B
JSON
23 строки
477 B
JSON
{
|
|
"root": true,
|
|
"extends": ["plugin:github/browser", "plugin:github/recommended", "plugin:github/typescript"],
|
|
"rules": {
|
|
"import/no-unresolved": "off"
|
|
},
|
|
"overrides": [
|
|
{
|
|
"files": "*.js",
|
|
"parser": "espree",
|
|
"parserOptions": {"ecmaVersion": 8}
|
|
},
|
|
{
|
|
"files": "test/test.js",
|
|
"rules": {
|
|
"import/extensions": "off",
|
|
"github/no-inner-html": "off",
|
|
"eslint-comments/no-use": "off"
|
|
}
|
|
}
|
|
]
|
|
}
|