Skip to content

Commit

Permalink
Merge pull request #258 from github/upgrade-devdeps
Browse files Browse the repository at this point in the history
Upgrade devdeps
  • Loading branch information
keithamus committed Apr 18, 2023
2 parents a3f2192 + a80abc9 commit 3a8f30f
Show file tree
Hide file tree
Showing 3 changed files with 2,897 additions and 2,430 deletions.
25 changes: 16 additions & 9 deletions .eslintrc.json
@@ -1,7 +1,21 @@
{
"root": true,
"extends": ["plugin:github/browser", "plugin:github/recommended", "plugin:github/typescript"],
"extends": [
"plugin:github/browser",
"plugin:github/recommended",
"plugin:github/typescript",
"plugin:custom-elements/recommended"
],
"rules": {
"custom-elements/tag-name-matches-class": [
"error",
{
"suffix": "Element"
}
],
"custom-elements/define-tag-after-class-definition": "off",
"custom-elements/no-method-prefixed-with-on": "off",
"custom-elements/expose-class-on-global": "off",
"import/extensions": ["error", "always"],
"import/no-unresolved": "off"
},
Expand All @@ -18,16 +32,9 @@
"github/unescaped-html-literal": "off",
"github/no-inner-html": "off",
"i18n-text/no-en": "off"
}
},
{
"files": "test/**/*.js",
"excludedFiles": "test/karma.config.cjs",
},
"env": {
"mocha": true
},
"globals": {
"assert": true
}
}
]
Expand Down

0 comments on commit 3a8f30f

Please sign in to comment.