Skip to content

Commit 4d0b7f7

Browse files
committed
♻️ refactoring code width vue3
1 parent badcfec commit 4d0b7f7

File tree

245 files changed

+8749
-25951
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

245 files changed

+8749
-25951
lines changed

.browserslistrc

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
> 1%
2+
last 2 versions
3+
not dead

.eslintrc.js

+7-7
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@ module.exports = {
33
env: {
44
node: true
55
},
6-
'extends': [
7-
'plugin:vue/essential',
8-
'@vue/standard'
6+
extends: [
7+
'plugin:vue/vue3-essential',
98
],
10-
rules: {
11-
'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
12-
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off'
13-
},
9+
// '@vue/standard'
1410
parserOptions: {
1511
parser: 'babel-eslint'
12+
},
13+
rules: {
14+
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
15+
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off'
1616
}
1717
}

.gitignore

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
.DS_Store
22
node_modules
33
/dist
4-
dist.rar
4+
5+
56
# local env files
67
.env.local
78
.env.*.local
@@ -10,6 +11,7 @@ dist.rar
1011
npm-debug.log*
1112
yarn-debug.log*
1213
yarn-error.log*
14+
pnpm-debug.log*
1315

1416
# Editor directories and files
1517
.idea

LICENSE

-21
This file was deleted.

0 commit comments

Comments
 (0)