mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08: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',
|
|
},
|
|
};
|