You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .eslintrc.cjs
+3-12Lines changed: 3 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -9,22 +9,17 @@ module.exports = {
9
9
'packages/cli/tests/cli/validation',
10
10
'packages/ts/test/',
11
11
'examples',
12
-
'cf-pages/*',
13
-
'vitest.config.ts',
12
+
'vitest.config.ts'
14
13
],
15
14
rules: {
16
15
// not necessary here, we dont build with bob
17
16
'import/extensions': 'off',
18
17
// pushing to array multiple times is not a big deal
19
18
'unicorn/no-array-push-push': 'off',
20
-
// TODO: warning for now, clean up
21
-
'@typescript-eslint/no-this-alias': 'warn',
22
19
// TODO: remove default exports, breaking change?
23
20
'import/no-default-export': 'off',
24
21
// TODO: remove once we get rid of all anys
25
22
'@typescript-eslint/no-explicit-any': 'off',
26
-
// TODO: not ready yet
27
-
'unicorn/prefer-node-protocol': 'off',
28
23
'@typescript-eslint/ban-types': 'off',
29
24
// AssemblyScript `===` is a reference equality check, not a value equality check. We are trying to do a value check. Learn more: https://github.com/AssemblyScript/assemblyscript/issues/621#issuecomment-497973428
30
25
eqeqeq: 'off',
@@ -36,12 +31,8 @@ module.exports = {
36
31
rules: {
37
32
// TODO: want to avoid any structural change so fix it later
0 commit comments