mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-12 13:27:31 -08:00
13659d036f
* ensure that eslint runs on all frontend code * remove tslint from `design-system` * enable prettier and eslint-prettier for `design-system` * Delete tslint.json * use a single editorconfig for the repo * enable prettier for all code in `design-system` * more linting fixes on design-system * ignore coverage for git and prettier * lintfix on editor-ui
37 lines
804 B
JavaScript
37 lines
804 B
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,
|
|
},
|
|
|
|
parser: 'vue-eslint-parser',
|
|
parserOptions: {
|
|
parser: {
|
|
ts: '@typescript-eslint/parser',
|
|
js: '@typescript-eslint/parser',
|
|
vue: 'vue-eslint-parser',
|
|
template: 'vue-eslint-parser',
|
|
},
|
|
},
|
|
|
|
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'],
|
|
indent: ['error', 'tab'],
|
|
'comma-dangle': ['error', 'always-multiline'],
|
|
'no-tabs': 0,
|
|
'no-labels': 0,
|
|
},
|
|
};
|