2021-08-10 16:12:55 +00:00
|
|
|
module.exports = {
|
|
|
|
root: true,
|
|
|
|
parser: '@typescript-eslint/parser',
|
2021-08-10 17:19:30 +00:00
|
|
|
plugins: ['@typescript-eslint'],
|
|
|
|
extends: ['eslint:recommended', 'plugin:@typescript-eslint/recommended'],
|
|
|
|
overrides: [
|
|
|
|
{
|
|
|
|
// enable the rule specifically for TypeScript files
|
|
|
|
files: ['*.ts', '*.tsx'],
|
|
|
|
rules: {
|
2021-08-11 21:11:23 +00:00
|
|
|
'@typescript-eslint/explicit-module-boundary-types': [0],
|
2021-08-10 17:19:30 +00:00
|
|
|
},
|
|
|
|
},
|
2021-08-10 16:12:55 +00:00
|
|
|
],
|
2021-08-10 17:19:30 +00:00
|
|
|
}
|