21 lines
420 B
JavaScript
21 lines
420 B
JavaScript
|
module.exports = {
|
||
|
root: true,
|
||
|
parser: '@typescript-eslint/parser',
|
||
|
plugins: [
|
||
|
'@typescript-eslint',
|
||
|
],
|
||
|
extends: [
|
||
|
'eslint:recommended',
|
||
|
'plugin:@typescript-eslint/recommended',
|
||
|
],
|
||
|
rules: {
|
||
|
'@typescript-eslint/no-explicit-any': 'off',
|
||
|
'@typescript-eslint/explicit-module-boundary-types': 'off',
|
||
|
'no-prototype-builtins': 'off',
|
||
|
},
|
||
|
env: {
|
||
|
browser: true,
|
||
|
es6: true,
|
||
|
}
|
||
|
};
|