mirror of
https://github.com/graphql-hive/console
synced 2026-04-21 14:37:17 +00:00
fix eslint pre-commit issue (#204)
This commit is contained in:
parent
8a66800537
commit
92d708b956
2 changed files with 9 additions and 1 deletions
|
|
@ -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
8
tsconfig.eslint.json
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"extends": "./tsconfig.json",
|
||||
"compilerOptions": {
|
||||
// "noEmit": true,
|
||||
// "allowJs": true
|
||||
},
|
||||
"include": ["integration-tests"]
|
||||
}
|
||||
Loading…
Reference in a new issue