mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
24 lines
504 B
JavaScript
24 lines
504 B
JavaScript
module.exports = {
|
|
root: true,
|
|
env: {
|
|
node: true,
|
|
},
|
|
'extends': [
|
|
'plugin:vue/essential',
|
|
'@vue/standard',
|
|
'@vue/typescript',
|
|
],
|
|
rules: {
|
|
'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
|
|
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
|
|
'semi': [2, 'always'],
|
|
'indent': ['error', 'tab'],
|
|
'comma-dangle': ['error', 'always-multiline'],
|
|
'no-tabs': 0,
|
|
'no-labels': 0,
|
|
},
|
|
parserOptions: {
|
|
parser: 'typescript-eslint-parser',
|
|
},
|
|
};
|