Skip to content

Commit

Permalink
build: optimize eslint setup (#44)
Browse files Browse the repository at this point in the history
* build: change extension order

* build: remove redundant parser option

* deps: remove unused deps

* build: optimize eslint config
  • Loading branch information
alexplischke authored Oct 18, 2023
1 parent 016427d commit 2d6d332
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 383 deletions.
12 changes: 6 additions & 6 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
"node": true
},
"extends": [
"prettier",
"eslint:recommended",
"plugin:@typescript-eslint/recommended"
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended"
],
"plugins": ["prettier", "@typescript-eslint"],
"parserOptions": {
"ecmaVersion": 2022
}
"plugins": [
"@typescript-eslint"
],
"parser": "@typescript-eslint/parser"
}
Loading

0 comments on commit 2d6d332

Please sign in to comment.