1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
| const IS_PROD = process.env.NODE_ENV === 'production';
module.exports = { extends: ['alloy', 'alloy/vue', 'alloy/typescript'], parser: 'vue-eslint-parser', parserOptions: { parser: { js: '@babel/eslint-parser', jsx: '@babel/eslint-parser',
ts: '@typescript-eslint/parser', tsx: '@typescript-eslint/parser',
}, }, env: { browser: true, }, globals: {}, rules: {
'no-debugger': [IS_PROD ? 'error' : 'warn'], 'no-duplicate-imports': 'error',
'no-console': [IS_PROD ? 'error' : 'warn'],
'@typescript-eslint/prefer-optional-chain': 'off', '@typescript-eslint/no-require-imports': 'off', '@typescript-eslint/explicit-member-accessibility': 'off', }, };
|