Skip to content

Commit c8500f6

Browse files
committed
chore(eslint): disable typescript eslint conflict rules
vuejs/vue-cli#1672
1 parent c8c4a37 commit c8500f6

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.eslintrc.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@ module.exports = {
22
root: true,
33
extends: ['plugin:vue/essential', '@vue/airbnb', '@vue/typescript'],
44
rules: {
5+
// https://github.com/vuejs/vue-cli/issues/1672
6+
indent: 'off',
7+
'space-infix-ops': 'off',
8+
'object-curly-newline': 'off',
59
'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
610
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
711
'no-plusplus': ['error', { allowForLoopAfterthoughts: true }],

0 commit comments

Comments
 (0)