-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
And ignore some of the most noisy ones for now. Should fix these later obviously, but for now I was mainly just concerned with fixing the "are you sure you want to continue despite the errors reported" warning that would be shown each time one started a debugging session. Signed-off-by: Anders Eknert <[email protected]>
- Loading branch information
1 parent
6109a70
commit 39f03b0
Showing
7 changed files
with
168 additions
and
130 deletions.
There are no files selected for viewing
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,19 @@ | ||
env: | ||
browser: true | ||
es2021: true | ||
extends: | ||
- eslint:recommended | ||
- plugin:@typescript-eslint/recommended | ||
parser: '@typescript-eslint/parser' | ||
parserOptions: | ||
ecmaVersion: latest | ||
sourceType: module | ||
plugins: | ||
- '@typescript-eslint' | ||
rules: | ||
'@typescript-eslint/no-explicit-any': 'off' | ||
'@typescript-eslint/no-var-requires': 'off' | ||
'@typescript-eslint/no-unused-vars': 'off' | ||
'no-undef': 'off' | ||
'no-case-declarations': 'off' | ||
'require-yield': 'off' |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
Oops, something went wrong.