|
|
@@ -0,0 +1,10 @@
|
|
|
+module.exports = {
|
|
|
+ root: true,
|
|
|
+ parser: "@typescript-eslint/parser",
|
|
|
+ plugins: ["@typescript-eslint"],
|
|
|
+ extends: ["eslint:recommended", "plugin:@typescript-eslint/recommended"],
|
|
|
+ rules: {
|
|
|
+ "@typescript-eslint/no-explicit-any": "off",
|
|
|
+ "@typescript-eslint/ban-ts-comment": "off",
|
|
|
+ },
|
|
|
+};
|