mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-09 22:24:05 -08:00
38 lines
1 KiB
JavaScript
38 lines
1 KiB
JavaScript
/**
|
|
* @type {import('@types/eslint').ESLint.ConfigData}
|
|
*/
|
|
module.exports = {
|
|
plugins: ['vue'],
|
|
|
|
extends: ['plugin:vue/essential', '@vue/typescript', './base'],
|
|
|
|
env: {
|
|
browser: true,
|
|
es6: true,
|
|
node: true,
|
|
},
|
|
|
|
ignorePatterns: ['**/*.js', '**/*.d.ts', 'vite.config.ts', '**/*.ts.snap'],
|
|
|
|
rules: {
|
|
'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
|
|
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
|
|
semi: [2, 'always'],
|
|
'comma-dangle': ['error', 'always-multiline'],
|
|
'no-tabs': 0,
|
|
'no-labels': 0,
|
|
'vue/no-deprecated-slot-attribute': 'error',
|
|
'vue/no-deprecated-slot-scope-attribute': 'error',
|
|
'vue/no-multiple-template-root': 'error',
|
|
'vue/v-slot-style': 'error',
|
|
'vue/no-unused-components': 'error',
|
|
'vue/multi-word-component-names': 'off',
|
|
|
|
// TODO: remove these
|
|
'vue/no-mutating-props': 'warn',
|
|
'vue/no-side-effects-in-computed-properties': 'warn',
|
|
'vue/no-v-text-v-html-on-component': 'warn',
|
|
'vue/return-in-computed-property': 'warn',
|
|
},
|
|
};
|