2022-02-10 12:07:06 -08:00
|
|
|
module.exports = {
|
|
|
|
parser: "@typescript-eslint/parser",
|
|
|
|
parserOptions: {
|
|
|
|
ecmaVersion: 2020,
|
|
|
|
sourceType: "module",
|
|
|
|
ecmaFeatures: {
|
|
|
|
jsx: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
plugins: ["@typescript-eslint"],
|
2024-05-14 19:53:08 +08:00
|
|
|
extends: [
|
|
|
|
"plugin:@typescript-eslint/recommended",
|
|
|
|
"plugin:prettier/recommended",
|
|
|
|
],
|
2022-02-10 12:07:06 -08:00
|
|
|
rules: {
|
|
|
|
quotes: [2, "double", { avoidEscape: true }],
|
|
|
|
semi: [2, "always"],
|
|
|
|
"eol-last": [2, "always"],
|
|
|
|
},
|
|
|
|
};
|