-
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: upgrade to node20, vscode 1.75.0, etc
Updated eslint. feat type only to trigger new minor version number.
- Loading branch information
Showing
7 changed files
with
12,428 additions
and
10,874 deletions.
There are no files selected for viewing
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,24 @@ | ||
import typescriptEslint from '@typescript-eslint/eslint-plugin'; | ||
import tsParser from '@typescript-eslint/parser'; | ||
|
||
export default [ | ||
{ | ||
files: ['src/*.ts'], | ||
plugins: { | ||
'@typescript-eslint': typescriptEslint, | ||
}, | ||
|
||
languageOptions: { | ||
parser: tsParser, | ||
ecmaVersion: 12, | ||
sourceType: 'module', | ||
}, | ||
|
||
rules: { | ||
curly: 'warn', | ||
eqeqeq: 'warn', | ||
'no-throw-literal': 'warn', | ||
semi: 'off', | ||
}, | ||
}, | ||
]; |
Oops, something went wrong.