Skip to content

Commit

Permalink
fix: update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
en9inerd committed Apr 22, 2024
1 parent b253868 commit de99859
Show file tree
Hide file tree
Showing 4 changed files with 1,868 additions and 1,135 deletions.
33 changes: 0 additions & 33 deletions .eslintrc.json

This file was deleted.

28 changes: 28 additions & 0 deletions eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
export default {
parser: '@typescript-eslint/parser',
plugins: ['@typescript-eslint'],
extends: ['eslint:recommended', 'plugin:@typescript-eslint/recommended'],
parserOptions: {
ecmaVersion: 2022,
sourceType: 'module',
},
env: {
browser: false,
node: true,
es6: true,
},
rules: {
quotes: 'off',
'@typescript-eslint/quotes': [
'error',
'single',
{
avoidEscape: true,
allowTemplateLiterals: true,
},
],
semi: 'off',
'@typescript-eslint/semi': 'error',
'no-constant-condition': 'off',
},
};
Loading

0 comments on commit de99859

Please sign in to comment.