Skip to content

Commit 43aac0f

Browse files
committed
Update dependencies
Eslint major version update requires new peer dependencies, which were added as devDependencies. vue-i18 and core-js also updated Signed-off-by: Olga Bulat <obulat@gmail.com>
1 parent 2a2b470 commit 43aac0f

File tree

3 files changed

+317
-114
lines changed

3 files changed

+317
-114
lines changed

.eslintrc.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@ module.exports = {
33
env: {
44
node: true
55
},
6-
'extends': [
6+
extends: [
77
'plugin:vue/essential',
88
'@vue/standard'
99
],
1010
rules: {
1111
'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
1212
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
13-
'indent': ['error', 4],
13+
indent: ['error', 4],
1414
'space-before-function-paren': ['warn', 'never']
1515
},
1616
parserOptions: {

0 commit comments

Comments
 (0)