Skip to content

Commit

Permalink
feat: upgrade to node20, vscode 1.75.0, etc
Browse files Browse the repository at this point in the history
Updated eslint.

feat type only to trigger new minor version number.
  • Loading branch information
mbehr1 committed Sep 8, 2024
1 parent 14ffe81 commit 729c7f0
Show file tree
Hide file tree
Showing 7 changed files with 12,428 additions and 10,874 deletions.
18 changes: 0 additions & 18 deletions .eslintrc.json

This file was deleted.

24 changes: 24 additions & 0 deletions eslint.config.mjs
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',
},
},
];
Loading

0 comments on commit 729c7f0

Please sign in to comment.