2020-12-23 17:26:53 +01:00
|
|
|
module.exports = {
|
2021-03-03 04:27:14 +01:00
|
|
|
parser: "@typescript-eslint/parser",
|
2020-12-23 17:26:53 +01:00
|
|
|
|
|
|
|
parserOptions: {
|
2021-03-03 04:27:14 +01:00
|
|
|
ecmaVersion: 2020,
|
|
|
|
sourceType: "module",
|
2020-12-23 17:26:53 +01:00
|
|
|
},
|
|
|
|
|
2021-03-03 04:27:14 +01:00
|
|
|
extends: ["plugin:@typescript-eslint/recommended", "plugin:prettier/recommended"],
|
2020-12-23 17:26:53 +01:00
|
|
|
|
2021-01-27 01:38:47 +01:00
|
|
|
plugins: ["@typescript-eslint"],
|
|
|
|
|
2021-03-03 04:27:14 +01:00
|
|
|
rules: {},
|
2020-12-23 17:26:53 +01:00
|
|
|
};
|