2020-04-15 15:28:42 +02:00
|
|
|
module.exports = {
|
|
|
|
root: true,
|
|
|
|
parser: '@typescript-eslint/parser',
|
|
|
|
plugins: [
|
|
|
|
'@typescript-eslint',
|
|
|
|
],
|
2020-04-21 11:23:18 +02:00
|
|
|
env: {
|
|
|
|
"node": true,
|
|
|
|
"browser": true
|
|
|
|
},
|
2020-04-15 15:28:42 +02:00
|
|
|
extends: [
|
|
|
|
'eslint:recommended',
|
|
|
|
'plugin:@typescript-eslint/eslint-recommended',
|
|
|
|
'plugin:@typescript-eslint/recommended',
|
|
|
|
],
|
|
|
|
rules: {
|
2020-04-21 11:23:18 +02:00
|
|
|
"@typescript-eslint/no-empty-function": "off",
|
|
|
|
"@typescript-eslint/explicit-function-return-type": "off"
|
2020-04-15 15:28:42 +02:00
|
|
|
}
|
|
|
|
};
|