Files
agentic_security/ui/.eslintrc.js
2025-02-17 16:03:06 +02:00

26 lines
515 B
JavaScript

module.exports = {
env: {
browser: true,
es2021: true,
node :true
},
extends: [
'eslint:recommended',
'plugin:vue/essential',
],
parserOptions: {
ecmaVersion: 12,
sourceType: 'module',
},
plugins: [
'vue',
],
rules: {
'no-unused-vars': 'off', // Disable the rule
'no-constant-condition': 'off',
'no-global-assign': 'off',
// or
// 'no-unused-vars': 'warn', // Change the rule to a warning
},
};