file-attachment-element/.eslintrc.json

26 строки
551 B
JSON

{
"root": true,
"plugins": ["custom-elements"],
"extends": [
"plugin:github/browser",
"plugin:github/recommended",
"plugin:github/typescript",
"plugin:custom-elements/recommended"
],
"rules": {
"@typescript-eslint/no-explicit-any": "off",
"custom-elements/tag-name-matches-class": ["error", {"suffix": "Element"}]
},
"globals": {
"FileAttachmentElement": "readonly"
},
"overrides": [
{
"files": "test/**/*.js",
"rules": {
"github/unescaped-html-literal": "off"
}
}
]
}