Skip to content

Commit

Permalink
fix: update eslint config to work with latest eslint and plugins version
Browse files Browse the repository at this point in the history
  • Loading branch information
fryorcraken committed Aug 5, 2022
1 parent 658b38e commit d7b4ca4
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"plugins": ["jest", "@typescript-eslint"],
"extends": ["plugin:github/es6"],
"plugins": ["github", "jest", "@typescript-eslint"],
"extends": ["plugin:github/internal", "plugin:github/typescript"],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 9,
"sourceType": "module",
"project": "./tsconfig.json"
"project": "./tsconfig.dev.json"
},
"env": {
"node": true,
Expand Down
7 changes: 7 additions & 0 deletions tsconfig.dev.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"extends": "./tsconfig",
"compilerOptions": {
"noEmit": true
},
"exclude": []
}

0 comments on commit d7b4ca4

Please sign in to comment.