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