2022-01-31 22:38:17 +00:00
|
|
|
module.exports = {
|
|
|
|
|
root: true,
|
|
|
|
|
parser: "@typescript-eslint/parser",
|
|
|
|
|
plugins: ["@typescript-eslint"],
|
|
|
|
|
extends: [
|
|
|
|
|
"eslint:recommended",
|
|
|
|
|
"plugin:@typescript-eslint/recommended",
|
2022-07-21 15:35:22 +01:00
|
|
|
"prettier",
|
2022-01-31 22:38:17 +00:00
|
|
|
],
|
|
|
|
|
};
|