2023-03-15 14:56:47 -04:00
|
|
|
module.exports = {
|
|
|
|
|
extends: "../.eslintrc.json",
|
|
|
|
|
parserOptions: {
|
|
|
|
|
project: './tsconfig.json',
|
|
|
|
|
tsconfigRootDir: __dirname,
|
|
|
|
|
},
|
2023-03-17 11:17:18 -04:00
|
|
|
rules: {
|
|
|
|
|
// TypeScript doesn't correctly detect toString() implementations on the token classes
|
|
|
|
|
"@typescript-eslint/restrict-template-expressions": "off",
|
|
|
|
|
}
|
2023-03-15 14:56:47 -04:00
|
|
|
}
|