Skip to content

Commit

Permalink
Merge branch 'main' into refactor/reorganize-structure
Browse files Browse the repository at this point in the history
  • Loading branch information
Shinigami92 authored Apr 5, 2024
2 parents d09a5a6 + 373b81a commit 2b6868b
Show file tree
Hide file tree
Showing 41 changed files with 1,746 additions and 748 deletions.
11 changes: 10 additions & 1 deletion .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,14 @@ module.exports = defineConfig({
{ default: 'array-simple', readonly: 'generic' },
],
'@typescript-eslint/consistent-type-exports': 'error',
'@typescript-eslint/consistent-type-imports': 'error',
'@typescript-eslint/consistent-type-imports': [
'error',
{
prefer: 'type-imports',
disallowTypeAnnotations: false,
fixStyle: 'separate-type-imports',
},
],
'@typescript-eslint/explicit-module-boundary-types': 'error',
'@typescript-eslint/naming-convention': [
'error',
Expand Down Expand Up @@ -65,6 +72,8 @@ module.exports = defineConfig({
'error',
{ ignoreParameters: true },
],
'@typescript-eslint/no-non-null-assertion': 'warn',
'@typescript-eslint/no-redundant-type-constituents': 'off',
'@typescript-eslint/no-unnecessary-condition': 'off', // requires `strictNullChecks` to be enabled
'@typescript-eslint/no-unsafe-assignment': 'off',
'@typescript-eslint/no-unsafe-call': 'off',
Expand Down
Loading

0 comments on commit 2b6868b

Please sign in to comment.