Skip to content

Commit fe11774

Browse files
committed
fix: temporarily disable space-infix-ops for eslint + TS
ref #1672
1 parent 9a8f49e commit fe11774

File tree

1 file changed

+4
-2
lines changed
  • packages/@vue/eslint-config-typescript

1 file changed

+4
-2
lines changed

packages/@vue/eslint-config-typescript/index.js

+4-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,10 @@ module.exports = {
66
rules: {
77
// https://github.com/eslint/typescript-eslint-parser#known-issues
88
'no-undef': 'off',
9-
'no-unused-vars': 'off'
9+
'no-unused-vars': 'off',
1010
// https://github.com/eslint/typescript-eslint-parser/issues/445
11-
// 'typescript/no-unused-vars': 'error'
11+
// 'typescript/no-unused-vars': 'error',
12+
// https://github.com/vuejs/vue-cli/issues/1672
13+
'space-infix-ops': 'off'
1214
}
1315
}

0 commit comments

Comments
 (0)