14 lines
296 B
JavaScript
14 lines
296 B
JavaScript
/** @type {import('eslint').Linter.Config} */
|
|
module.exports = {
|
|
extends: [
|
|
'../../configs/build.eslintrc.json'
|
|
],
|
|
parserOptions: {
|
|
tsconfigRootDir: __dirname,
|
|
project: 'tsconfig.json'
|
|
},
|
|
rules: {
|
|
"@typescript-eslint/no-shadow": "off"
|
|
}
|
|
};
|