Skip to content

Commit

Permalink
chore(eslint): disable typescript eslint conflict rules
Browse files Browse the repository at this point in the history
  • Loading branch information
u3u committed Jul 28, 2018
1 parent c8c4a37 commit c8500f6
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ module.exports = {
root: true,
extends: ['plugin:vue/essential', '@vue/airbnb', '@vue/typescript'],
rules: {
// https://github.com/vuejs/vue-cli/issues/1672
indent: 'off',
'space-infix-ops': 'off',
'object-curly-newline': 'off',
'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
'no-plusplus': ['error', { allowForLoopAfterthoughts: true }],
Expand Down

0 comments on commit c8500f6

Please sign in to comment.