16 lines
382 B
JavaScript
16 lines
382 B
JavaScript
module.exports = {
|
|
root: true,
|
|
parser: '@typescript-eslint/parser',
|
|
parserOptions: {
|
|
tsconfigRootDir: __dirname,
|
|
project: ['./tsconfig.json', './test/tsconfig.json'],
|
|
},
|
|
ignorePatterns: ['**/.eslintrc.cjs'],
|
|
extends: [
|
|
'plugin:@valkyriecoms/recommended',
|
|
],
|
|
rules: {
|
|
'@typescript-eslint/prefer-nullish-coalescing': 'off',
|
|
'import/no-default-export': 'off',
|
|
},
|
|
};
|