fix eslint pre-commit issue (#204)

This commit is contained in:
Dimitri POSTOLOV 2022-06-29 13:45:37 +02:00 committed by GitHub
parent 8a66800537
commit 92d708b956
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 1 deletions

View file

@ -16,7 +16,7 @@ module.exports = {
parserOptions: {
ecmaVersion: 2020,
sourceType: 'module',
project: './tsconfig.json',
project: ['./tsconfig.json', './tsconfig.eslint.json'],
},
parser: '@typescript-eslint/parser',
plugins: ['@typescript-eslint', 'import', 'hive'],

8
tsconfig.eslint.json Normal file
View file

@ -0,0 +1,8 @@
{
"extends": "./tsconfig.json",
"compilerOptions": {
// "noEmit": true,
// "allowJs": true
},
"include": ["integration-tests"]
}