14 lines
421 B
JavaScript
14 lines
421 B
JavaScript
|
/* eslint-env node */
|
||
|
module.exports = {
|
||
|
extends: ['eslint:recommended', 'plugin:@typescript-eslint/recommended'],
|
||
|
parser: '@typescript-eslint/parser',
|
||
|
plugins: ['@typescript-eslint'],
|
||
|
root: true,
|
||
|
ignorePatterns: [ 'dist', 'node_modules' ],
|
||
|
rules: {
|
||
|
"@typescript-eslint/ban-ts-comment": "off",
|
||
|
"@typescript-eslint/no-non-null-assertion": "off",
|
||
|
"@typescript-eslint/no-explicit-any": "off",
|
||
|
}
|
||
|
};
|