summaryrefslogtreecommitdiff
path: root/.eslintrc.js
diff options
context:
space:
mode:
Diffstat (limited to '.eslintrc.js')
-rw-r--r--.eslintrc.js8
1 files changed, 7 insertions, 1 deletions
diff --git a/.eslintrc.js b/.eslintrc.js
index 2e8a358a..4de4c1fd 100644
--- a/.eslintrc.js
+++ b/.eslintrc.js
@@ -6,7 +6,13 @@ module.exports = {
extends: ['plugin:vue/essential', '@vue/prettier'],
rules: {
'no-console': 'off',
- 'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off'
+ 'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
+ 'prettier/prettier': [
+ 'error',
+ {
+ singleQuote: true
+ }
+ ]
},
parserOptions: {
parser: 'babel-eslint'