Skip to content

Commit 7014a25

Browse files
author
Frédéric Collonval
committed
Correct eslint error
1 parent 4557b89 commit 7014a25

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

{{cookiecutter.github_project_name}}/.eslintrc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ module.exports = {
77
],
88
parser: '@typescript-eslint/parser',
99
parserOptions: {
10-
project: 'tsconfig.json',
10+
project: 'tsconfig.eslint.json',
1111
sourceType: 'module'
1212
},
1313
plugins: ['@typescript-eslint'],
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"extends": "./tsconfig.json",
3+
"include": ["src/**/*.ts", "src/**/*.tsx"],
4+
"exclude": []
5+
}

0 commit comments

Comments
 (0)