2020-11-10 09:12:58 +03:00
|
|
|
module.exports = {
|
|
|
|
root: true,
|
2020-12-20 04:21:34 +03:00
|
|
|
env: {
|
|
|
|
node: true,
|
|
|
|
amd: true,
|
|
|
|
mocha: true,
|
|
|
|
},
|
2020-11-10 09:12:58 +03:00
|
|
|
parser: '@typescript-eslint/parser',
|
2020-12-20 04:21:34 +03:00
|
|
|
parserOptions: {
|
|
|
|
ecmaVersion: 2019
|
|
|
|
},
|
2020-11-10 09:12:58 +03:00
|
|
|
plugins: [
|
|
|
|
'@typescript-eslint',
|
|
|
|
],
|
|
|
|
extends: [
|
|
|
|
'eslint:recommended',
|
|
|
|
'plugin:@typescript-eslint/eslint-recommended',
|
|
|
|
'plugin:@typescript-eslint/recommended',
|
|
|
|
],
|
|
|
|
};
|