mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 12:35:46 +03:00
23 lines
486 B
JavaScript
23 lines
486 B
JavaScript
module.exports = {
|
|
root: true,
|
|
env: {
|
|
node: true,
|
|
},
|
|
'extends': [
|
|
'plugin:vue/essential',
|
|
'@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',
|
|
},
|
|
};
|