1234567891011121314151617181920212223242526272829303132333435363738 |
- module.exports = {
- root: true,
- env: {
- node: true,
- },
- extends: [
- "plugin:vue/vue3-essential",
- "eslint:recommended",
- "@vue/typescript/recommended",
- "plugin:prettier/recommended",
- ],
- parserOptions: {
- ecmaVersion: 2020,
- },
- rules: {
- "no-console": process.env.NODE_ENV === "production" ? "warn" : "off",
- "no-debugger": process.env.NODE_ENV === "production" ? "warn" : "off",
- "@typescript-eslint/ban-ts-comment": "off",
- "@typescript-eslint/no-explicit-any": "off",
- "prettier/prettier": "off",
- "@typescript-eslint/no-var-requires": "off",
- "@typescript-eslint/no-namespace": "off",
- "@typescript-eslint/no-this-alias": "off",
- "prefer-const": "off",
- "@typescript-eslint/adjacent-overload-signatures":"off"
- },
- overrides: [
- {
- files: [
- "**/__tests__/*.{j,t}s?(x)",
- "**/tests/unit/**/*.spec.{j,t}s?(x)",
- ],
- env: {
- jest: true,
- },
- },
- ],
- };
|