-
-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #216 from docsbydoxdox/hotfix/updated-packages
[hotfix] Updated packages.
- Loading branch information
Showing
43 changed files
with
1,471 additions
and
1,136 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
import js from '@eslint/js'; | ||
|
||
import tseslint from 'typescript-eslint'; | ||
import typescriptParser from '@typescript-eslint/parser'; | ||
import typescriptPlugin from '@typescript-eslint/eslint-plugin'; | ||
|
||
export default [ | ||
js.configs.recommended, | ||
tseslint.configs.eslintRecommended, | ||
...tseslint.configs.recommended, | ||
{ | ||
files: ['**/*.ts', '**/*.js'], | ||
languageOptions: { | ||
parser: typescriptParser, | ||
globals: { | ||
process: 'readonly' | ||
} | ||
}, | ||
plugins: { | ||
typescriptPlugin: typescriptPlugin | ||
}, | ||
rules: { | ||
'@typescript-eslint/no-explicit-any': 'error', | ||
'@typescript-eslint/no-unused-vars': 'error', | ||
'no-warning-comments': [ | ||
'warn', | ||
{ terms: ['todo'], location: 'start' } | ||
], | ||
'no-magic-numbers': [ | ||
'error', | ||
{ | ||
ignore: [-1, 0, 1] | ||
} | ||
] | ||
} | ||
} | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
import js from '@eslint/js'; | ||
|
||
import tseslint from 'typescript-eslint'; | ||
import typescriptParser from '@typescript-eslint/parser'; | ||
import typescriptPlugin from '@typescript-eslint/eslint-plugin'; | ||
|
||
export default [ | ||
js.configs.recommended, | ||
tseslint.configs.eslintRecommended, | ||
...tseslint.configs.recommended, | ||
{ | ||
files: ['**/*.ts', '**/*.js'], | ||
languageOptions: { | ||
parser: typescriptParser, | ||
globals: { | ||
process: 'readonly', | ||
console: 'readonly' | ||
} | ||
}, | ||
plugins: { | ||
typescriptPlugin: typescriptPlugin | ||
}, | ||
rules: { | ||
'@typescript-eslint/no-explicit-any': 'error', | ||
'@typescript-eslint/no-unused-vars': 'error', | ||
'no-warning-comments': [ | ||
'warn', | ||
{ terms: ['todo'], location: 'start' } | ||
], | ||
'no-magic-numbers': [ | ||
'error', | ||
{ | ||
ignore: [-1, 0, 1] | ||
} | ||
] | ||
} | ||
} | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
import js from '@eslint/js'; | ||
|
||
import tseslint from 'typescript-eslint'; | ||
import typescriptParser from '@typescript-eslint/parser'; | ||
import typescriptPlugin from '@typescript-eslint/eslint-plugin'; | ||
|
||
export default [ | ||
js.configs.recommended, | ||
tseslint.configs.eslintRecommended, | ||
...tseslint.configs.recommended, | ||
{ | ||
files: ['**/*.ts', '**/*.js'], | ||
languageOptions: { | ||
parser: typescriptParser, | ||
globals: { | ||
process: 'readonly', | ||
console: 'readonly' | ||
} | ||
}, | ||
plugins: { | ||
typescriptPlugin: typescriptPlugin | ||
}, | ||
rules: { | ||
'@typescript-eslint/no-explicit-any': 'error', | ||
'@typescript-eslint/no-unused-vars': 'error', | ||
'no-warning-comments': [ | ||
'warn', | ||
{ terms: ['todo'], location: 'start' } | ||
], | ||
'no-magic-numbers': [ | ||
'error', | ||
{ | ||
ignore: [-1, 0, 1] | ||
} | ||
] | ||
} | ||
} | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
import js from '@eslint/js'; | ||
|
||
import tseslint from 'typescript-eslint'; | ||
import typescriptParser from '@typescript-eslint/parser'; | ||
import typescriptPlugin from '@typescript-eslint/eslint-plugin'; | ||
|
||
export default [ | ||
js.configs.recommended, | ||
tseslint.configs.eslintRecommended, | ||
...tseslint.configs.recommended, | ||
{ | ||
files: ['**/*.ts', '**/*.js'], | ||
languageOptions: { | ||
parser: typescriptParser, | ||
globals: { | ||
process: 'readonly', | ||
console: 'readonly' | ||
} | ||
}, | ||
plugins: { | ||
typescriptPlugin: typescriptPlugin | ||
}, | ||
rules: { | ||
'@typescript-eslint/no-explicit-any': 'error', | ||
'@typescript-eslint/no-unused-vars': 'error', | ||
'no-warning-comments': [ | ||
'warn', | ||
{ terms: ['todo'], location: 'start' } | ||
], | ||
'no-magic-numbers': [ | ||
'error', | ||
{ | ||
ignore: [-1, 0, 1] | ||
} | ||
] | ||
} | ||
} | ||
]; |
Oops, something went wrong.