mirror of
https://github.com/msoedov/agentic_security.git
synced 2026-06-24 22:29:56 +02:00
26 lines
515 B
JavaScript
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
|
|
},
|
|
};
|