mirror of
https://github.com/SecurityBrewery/catalyst.git
synced 2025-12-06 15:22:47 +01:00
31 lines
700 B
JavaScript
31 lines
700 B
JavaScript
module.exports = {
|
|
root: true,
|
|
env: {
|
|
node: true,
|
|
},
|
|
extends: [
|
|
"plugin:vue/essential",
|
|
"eslint:recommended",
|
|
"@vue/typescript/recommended",
|
|
],
|
|
parserOptions: {
|
|
ecmaVersion: 2020,
|
|
},
|
|
rules: {
|
|
"no-console": process.env.NODE_ENV === "production" ? "warn" : "off",
|
|
"no-debugger": process.env.NODE_ENV === "production" ? "warn" : "off",
|
|
'vue/valid-v-slot': ['error', {
|
|
allowModifiers: true,
|
|
}],
|
|
},
|
|
overrides: [
|
|
{
|
|
files: ["**/__tests__/*.{j,t}s?(x)", "**/tests/unit/**/*.spec.{j,t}s?(x)"],
|
|
env: {
|
|
jest: true,
|
|
},
|
|
},
|
|
],
|
|
ignorePatterns: ["src/suggestions/grammar/*.js", "src/views/playbook/vue-blocks/"],
|
|
};
|