Skip to content
This repository was archived by the owner on Jan 9, 2025. It is now read-only.

Commit 59d18fe

Browse files
authored
Merge pull request #19 from github/refactor
Refactor
2 parents 740fdf7 + 0dbafd3 commit 59d18fe

23 files changed

+3560
-3886
lines changed

.eslintrc.json

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,19 @@
33
"plugins": ["github"],
44
"extends": ["plugin:github/recommended", "plugin:github/typescript", "plugin:github/browser"],
55
"rules": {
6+
"import/no-unresolved": "off",
67
"no-invalid-this": "off",
78
"@typescript-eslint/no-invalid-this": ["error"],
8-
"import/extensions": ["error", "always"]
9+
"import/extensions": ["error", "always"],
10+
"github/no-inner-html": "off"
911
},
1012
"overrides": [
1113
{
1214
"files": "test/*",
1315
"rules": {
14-
"github/unescaped-html-literal": "off"
16+
"@typescript-eslint/ban-types": "off",
17+
"github/unescaped-html-literal": "off",
18+
"i18n-text/no-en": "off"
1519
},
1620
"globals": {
1721
"chai": false,
@@ -24,7 +28,8 @@
2428
{
2529
"files": "*.cjs",
2630
"rules": {
27-
"@typescript-eslint/no-var-requires": "off"
31+
"@typescript-eslint/no-var-requires": "off",
32+
"import/no-commonjs": "off"
2833
},
2934
"env": {
3035
"node": true

0 commit comments

Comments
 (0)