mirror of
https://github.com/oxalica/nil.git
synced 2024-11-25 18:41:40 +03:00
17 lines
568 B
JavaScript
17 lines
568 B
JavaScript
|
module.exports = {
|
||
|
env: {
|
||
|
node: true,
|
||
|
},
|
||
|
parser: '@typescript-eslint/parser',
|
||
|
extends: ['plugin:@typescript-eslint/recommended', 'plugin:prettier/recommended'],
|
||
|
rules: {
|
||
|
'@typescript-eslint/ban-ts-comment': 'off',
|
||
|
'@typescript-eslint/no-explicit-any': 'off',
|
||
|
'@typescript-eslint/no-non-null-assertion': 'off',
|
||
|
'@typescript-eslint/no-namespace': 'off',
|
||
|
'@typescript-eslint/no-empty-function': 'off',
|
||
|
'@typescript-eslint/explicit-function-return-type': 'off',
|
||
|
'@typescript-eslint/explicit-module-boundary-types': 'off',
|
||
|
},
|
||
|
};
|