20 lines
461 B
JavaScript
20 lines
461 B
JavaScript
module.exports = {
|
|
extends: [
|
|
'eslint:recommended',
|
|
'plugin:@typescript-eslint/recommended',
|
|
'plugin:prettier/recommended',
|
|
],
|
|
parser: '@typescript-eslint/parser',
|
|
parserOptions: {
|
|
tsconfigRootDir: __dirname,
|
|
project: [
|
|
'./contracts/tsconfig.json',
|
|
'./ui/tsconfig.json',
|
|
'./subgraph/tsconfig.json',
|
|
'./subgraph/tsconfig.tools.json',
|
|
],
|
|
},
|
|
plugins: ['@typescript-eslint', 'prettier'],
|
|
root: true,
|
|
};
|