2020-07-27 12:29:58 +08:00
|
|
|
module.exports = {
|
2020-07-27 12:53:30 +08:00
|
|
|
root: true,
|
2020-07-27 12:29:58 +08:00
|
|
|
parser: '@typescript-eslint/parser',
|
2020-07-27 12:53:30 +08:00
|
|
|
parserOptions: {
|
|
|
|
ecmaVersion: 2020,
|
|
|
|
sourceType: 'module',
|
|
|
|
},
|
|
|
|
env: {
|
|
|
|
browser: true,
|
|
|
|
node: true,
|
|
|
|
jest: true,
|
|
|
|
},
|
2020-07-27 12:29:58 +08:00
|
|
|
extends: [
|
|
|
|
'plugin:@typescript-eslint/recommended',
|
|
|
|
'prettier/@typescript-eslint',
|
|
|
|
'plugin:prettier/recommended',
|
|
|
|
],
|
2020-07-27 12:53:30 +08:00
|
|
|
rules: {},
|
2020-07-27 12:29:58 +08:00
|
|
|
};
|
2020-07-27 12:53:30 +08:00
|
|
|
|