module.exports = { root: true, env: { node: true, es2022: true, }, extends: [ "plugin:vue/vue3-essential", "eslint:recommended", "@vue/typescript/recommended", "plugin:prettier/recommended", ], // parserOptions: { // ecmaVersion: 2020, // }, rules: { "max-len": [ "warn", { code: 100, ignoreComments: true, ignoreTemplateLiterals: true, ignoreUrls: true, }, ], "no-console": process.env.NODE_ENV === "production" ? "warn" : "off", "no-debugger": process.env.NODE_ENV === "production" ? "warn" : "off", "prettier/prettier": ["warn", { printWidth: 100 }], "@typescript-eslint/no-unnecessary-type-constraint": "off", }, };