16 lines
297 B
JavaScript
16 lines
297 B
JavaScript
|
module.exports = {
|
||
|
parser: '@typescript-eslint/parser',
|
||
|
extends: [
|
||
|
'plugin:@typescript-eslint/recommended',
|
||
|
'prettier/@typescript-eslint',
|
||
|
'plugin:prettier/recommended',
|
||
|
],
|
||
|
parserOptions: {
|
||
|
ecmaVersion: 2018,
|
||
|
sourceType: 'module',
|
||
|
},
|
||
|
rules: {
|
||
|
'prettier/prettier': 'warn',
|
||
|
},
|
||
|
};
|