Skip to content

Commit ecb02f4

Browse files
chore(eslint): revert fixes
1 parent 6dd1d95 commit ecb02f4

File tree

49 files changed

+108
-556
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+108
-556
lines changed

.github/workflows/autofix.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
with:
3131
node-version-file: .tool-versions
3232
- run: yarn install
33-
- run: yarn lint:fix --cache-strategy content --suppress-all --pass-on-unpruned-suppressions
33+
- run: yarn lint:fix --cache-strategy content --prune-suppressions
3434
- run: yarn format:fix
3535
- name: Apply fixes
3636
uses: autofix-ci/action@v1
Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,10 @@
11
{
22
"src/index.test.ts": {
3-
"@typescript-eslint/consistent-type-definitions": {
4-
"count": 1
5-
},
63
"@typescript-eslint/restrict-template-expressions": {
74
"count": 4
85
}
96
},
107
"src/index.ts": {
11-
"@typescript-eslint/consistent-indexed-object-style": {
12-
"count": 2
13-
},
148
"@typescript-eslint/no-invalid-void-type": {
159
"count": 1
1610
},
@@ -24,4 +18,4 @@
2418
"count": 1
2519
}
2620
}
27-
}
21+
}
Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,5 @@
11
{
22
"src/index.test.ts": {
3-
"@typescript-eslint/consistent-type-definitions": {
4-
"count": 1
5-
},
6-
"@typescript-eslint/dot-notation": {
7-
"count": 1
8-
},
93
"@typescript-eslint/no-unsafe-member-access": {
104
"count": 1
115
},
@@ -14,9 +8,6 @@
148
}
159
},
1610
"src/index.ts": {
17-
"@typescript-eslint/consistent-indexed-object-style": {
18-
"count": 6
19-
},
2011
"@typescript-eslint/no-dynamic-delete": {
2112
"count": 1
2213
},
@@ -30,4 +21,4 @@
3021
"count": 1
3122
}
3223
}
33-
}
24+
}

packages/auth-js/eslint-suppressions.json

Lines changed: 1 addition & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
{
22
"src/client.ts": {
3-
"@typescript-eslint/consistent-type-definitions": {
4-
"count": 2
5-
},
63
"@typescript-eslint/no-redundant-type-constituents": {
74
"count": 3
85
},
@@ -20,9 +17,6 @@
2017
"@typescript-eslint/await-thenable": {
2118
"count": 1
2219
},
23-
"@typescript-eslint/dot-notation": {
24-
"count": 1
25-
},
2620
"@typescript-eslint/no-unnecessary-condition": {
2721
"count": 2
2822
},
@@ -34,18 +28,9 @@
3428
}
3529
},
3630
"src/index.ts": {
37-
"@typescript-eslint/consistent-type-definitions": {
38-
"count": 2
39-
},
4031
"@typescript-eslint/no-unnecessary-condition": {
4132
"count": 1
4233
},
43-
"@typescript-eslint/no-unnecessary-type-assertion": {
44-
"count": 1
45-
},
46-
"@typescript-eslint/prefer-regexp-exec": {
47-
"count": 1
48-
},
4934
"@typescript-eslint/restrict-template-expressions": {
5035
"count": 1
5136
}
@@ -69,9 +54,6 @@
6954
"@typescript-eslint/no-unsafe-assignment": {
7055
"count": 1
7156
},
72-
"@typescript-eslint/non-nullable-type-assertion-style": {
73-
"count": 1
74-
},
7557
"@typescript-eslint/prefer-nullish-coalescing": {
7658
"count": 1
7759
},
@@ -82,4 +64,4 @@
8264
"count": 4
8365
}
8466
}
85-
}
67+
}

packages/bun-compress/eslint-suppressions.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@
1515
"count": 1
1616
}
1717
}
18-
}
18+
}

packages/bun-transpiler/eslint-suppressions.json

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,11 @@
33
"@typescript-eslint/await-thenable": {
44
"count": 1
55
},
6-
"@typescript-eslint/consistent-type-definitions": {
7-
"count": 1
8-
},
96
"@typescript-eslint/no-unnecessary-condition": {
107
"count": 1
118
},
129
"@typescript-eslint/restrict-template-expressions": {
1310
"count": 1
1411
}
1512
}
16-
}
13+
}

packages/capnweb/eslint-suppressions.json

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,11 @@
99
"@typescript-eslint/no-unsafe-argument": {
1010
"count": 2
1111
},
12-
"@typescript-eslint/no-unsafe-assignment": {
13-
"count": 3
14-
},
15-
"@typescript-eslint/no-unsafe-call": {
16-
"count": 2
17-
},
1812
"@typescript-eslint/restrict-template-expressions": {
1913
"count": 5
14+
},
15+
"@typescript-eslint/unbound-method": {
16+
"count": 1
2017
}
2118
},
2219
"src/index.ts": {

packages/casbin/eslint-suppressions.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@
77
"count": 1
88
}
99
}
10-
}
10+
}
Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,10 @@
11
{
22
"src/index.test.ts": {
3-
"@typescript-eslint/consistent-type-definitions": {
4-
"count": 1
5-
},
63
"@typescript-eslint/restrict-template-expressions": {
74
"count": 5
85
}
96
},
107
"src/index.ts": {
11-
"@typescript-eslint/consistent-indexed-object-style": {
12-
"count": 1
13-
},
148
"@typescript-eslint/no-invalid-void-type": {
159
"count": 2
1610
},
@@ -24,4 +18,4 @@
2418
"count": 1
2519
}
2620
}
27-
}
21+
}
Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,10 @@
11
{
22
"src/clerk-auth.ts": {
3-
"@typescript-eslint/consistent-type-definitions": {
4-
"count": 2
5-
},
63
"@typescript-eslint/no-unnecessary-condition": {
74
"count": 1
85
},
9-
"@typescript-eslint/no-unsafe-argument": {
10-
"count": 1
11-
},
126
"@typescript-eslint/prefer-nullish-coalescing": {
137
"count": 1
148
}
159
}
16-
}
10+
}

0 commit comments

Comments
 (0)