aboutsummaryrefslogtreecommitdiff
path: root/.eslintrc.js
diff options
context:
space:
mode:
authorHenry Jameson <me@hjkos.com>2019-07-07 00:54:17 +0300
committerHenry Jameson <me@hjkos.com>2019-07-07 00:54:17 +0300
commit020c6d1bcfaf67ccb9ecdab13a39a1ddea868bb6 (patch)
tree2c4d29afd542e288ad1907609a1b12c7c0719e31 /.eslintrc.js
parent1ec4caa0bbea18854a8a7bccaa7e2a0ea8bdf79e (diff)
all the manual fixes
Diffstat (limited to '.eslintrc.js')
-rw-r--r--.eslintrc.js22
1 files changed, 1 insertions, 21 deletions
diff --git a/.eslintrc.js b/.eslintrc.js
index 7d090208..3c48baa8 100644
--- a/.eslintrc.js
+++ b/.eslintrc.js
@@ -21,26 +21,6 @@ module.exports = {
'generator-star-spacing': 0,
// allow debugger during development
'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0,
- // Webpack 4 update commit, most of these probably should be fixed and removed in a separate MR
- // A lot of errors come from .vue files that are now properly linted
- 'vue/valid-v-if': 1,
- 'vue/use-v-on-exact': 1,
- 'vue/no-parsing-error': 1,
- 'vue/require-v-for-key': 1,
- 'vue/valid-v-for': 1,
- 'vue/require-prop-types': 1,
- 'vue/no-use-v-if-with-v-for': 1,
- 'indent': 1,
- 'import/first': 1,
- 'object-curly-spacing': 1,
- 'prefer-promise-reject-errors': 1,
- 'eol-last': 1,
- 'no-return-await': 1,
- 'no-multi-spaces': 1,
- 'no-trailing-spaces': 1,
- 'no-unused-expressions': 1,
- 'no-mixed-operators': 1,
- 'camelcase': 1,
- 'no-multiple-empty-lines': 1
+ 'vue/require-prop-types': 0
}
}