2020-10-21 16:30:42 +00:00
|
|
|
module.exports = {
|
|
|
|
env: {
|
|
|
|
es2021: true,
|
|
|
|
node: true
|
|
|
|
},
|
|
|
|
extends: [
|
|
|
|
'standard-with-typescript',
|
|
|
|
'prettier',
|
|
|
|
'prettier/@typescript-eslint',
|
|
|
|
'prettier/standard'
|
|
|
|
],
|
|
|
|
parser: '@typescript-eslint/parser',
|
|
|
|
parserOptions: {
|
|
|
|
ecmaVersion: 12,
|
2020-10-25 17:03:53 +00:00
|
|
|
sourceType: 'module',
|
|
|
|
project: 'tsconfig.json'
|
2020-10-21 16:30:42 +00:00
|
|
|
},
|
|
|
|
plugins: ['@typescript-eslint'],
|
2020-10-25 17:03:53 +00:00
|
|
|
rules: {
|
|
|
|
'@typescript-eslint/restrict-template-expressions': 'off'
|
|
|
|
}
|
2020-10-21 16:30:42 +00:00
|
|
|
}
|