Skip to content

Commit 2b801df

Browse files
committed
the great divide
1 parent eff97ba commit 2b801df

File tree

257 files changed

+1887
-65643
lines changed

Some content is hidden

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

257 files changed

+1887
-65643
lines changed

.eslintignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@ build
33
main.js
44
Publish.js
55
*.svelte
6+
extraTypes

.eslintrc.cjs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const config = {
55
env: {
66
node: true,
77
},
8-
plugins: ['isaacscript', 'import', 'only-warn'],
8+
plugins: ['isaacscript', 'import', 'only-warn', 'no-relative-import-paths'],
99
extends: [
1010
'eslint:recommended',
1111
'plugin:@typescript-eslint/eslint-recommended',
@@ -17,7 +17,7 @@ const config = {
1717
sourceType: 'module',
1818
tsconfigRootDir: __dirname,
1919
ecmaVersion: 'latest',
20-
project: ['./tsconfig.json'],
20+
project: ['./tsconfig.json', './packages/*/tsconfig.json'],
2121
},
2222
rules: {
2323
'@typescript-eslint/no-explicit-any': ['warn'],
@@ -34,6 +34,8 @@ const config = {
3434
'@typescript-eslint/no-confusing-void-expression': ['error', { ignoreArrowShorthand: true }],
3535
'@typescript-eslint/restrict-template-expressions': 'off',
3636

37+
'no-relative-import-paths/no-relative-import-paths': 'error',
38+
3739
'@typescript-eslint/ban-ts-comment': 'off',
3840
'@typescript-eslint/no-empty-function': 'off',
3941
'@typescript-eslint/no-inferrable-types': 'off',

0 commit comments

Comments
 (0)