Skip to content

Commit

Permalink
fix: temporarily disable space-infix-ops for eslint + TS
Browse files Browse the repository at this point in the history
ref #1672
  • Loading branch information
yyx990803 committed Jul 17, 2018
1 parent 9a8f49e commit fe11774
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions packages/@vue/eslint-config-typescript/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,10 @@ module.exports = {
rules: {
// https://github.com/eslint/typescript-eslint-parser#known-issues
'no-undef': 'off',
'no-unused-vars': 'off'
'no-unused-vars': 'off',
// https://github.com/eslint/typescript-eslint-parser/issues/445
// 'typescript/no-unused-vars': 'error'
// 'typescript/no-unused-vars': 'error',
// https://github.com/vuejs/vue-cli/issues/1672
'space-infix-ops': 'off'
}
}

0 comments on commit fe11774

Please sign in to comment.