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
+14Lines changed: 14 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,17 @@
1
1
module.exports={
2
2
extends: ['@theguild'],
3
+
ignorePatterns: [
4
+
'node_modules',
5
+
'dist',
6
+
'build',
7
+
'generated',
8
+
'packages/cli/tests/cli/init',
9
+
'packages/cli/tests/cli/validation',
10
+
'packages/ts/test/',
11
+
'examples',
12
+
'cf-pages/*',
13
+
'vitest.config.ts',
14
+
],
3
15
rules: {
4
16
// not necessary here, we dont build with bob
5
17
'import/extensions': 'off',
@@ -16,6 +28,7 @@ module.exports = {
16
28
'@typescript-eslint/ban-types': 'off',
17
29
// 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
0 commit comments