This repository was archived by the owner on May 13, 2024. It is now read-only.
File tree 4 files changed +1123
-21
lines changed
4 files changed +1123
-21
lines changed Original file line number Diff line number Diff line change
1
+ module . exports = {
2
+ root : true ,
3
+
4
+ env : {
5
+ "node" : true
6
+ } ,
7
+
8
+ extends : [
9
+ 'plugin:vue/recommended' ,
10
+ 'plugin:prettier/recommended' ,
11
+ "prettier/vue" ,
12
+ ] ,
13
+
14
+ rules : {
15
+ 'no-undef' : [ 'error' ] ,
16
+
17
+ 'vue/match-component-file-name' : [
18
+ 'error' ,
19
+ {
20
+ extensions : [ 'js' , 'vue' ] ,
21
+ shouldMatchCase : false
22
+ }
23
+ ] ,
24
+
25
+ 'vue/prop-name-casing' : 0 ,
26
+
27
+ 'vue/require-default-prop' : 0
28
+ } ,
29
+
30
+
31
+ }
Original file line number Diff line number Diff line change
1
+ module . exports = {
2
+ semi :false ,
3
+ singleQuote : true ,
4
+ tabWidth : 2 ,
5
+ trailingComma : 'es5' ,
6
+ }
Original file line number Diff line number Diff line change 13
13
],
14
14
"scripts" : {
15
15
"test" : " npm run lint && jest" ,
16
- "lint" : " disable " ,
16
+ "lint" : " eslint . --ext .js,.vue " ,
17
17
"docs:dev" : " vuepress dev docs" ,
18
18
"docs:build" : " vuepress build docs" ,
19
19
"example:dev" : " vuepress dev example --temp example/.temp" ,
20
20
"example:build" : " vuepress build example --temp example/.temp" ,
21
21
"prepublishOnly" : " npm run example:build && conventional-changelog -p angular -r 2 -i CHANGELOG.md -s"
22
22
},
23
+ "husky" : {
24
+ "hooks" : {
25
+ "pre-commit" : " lint-staged"
26
+ }
27
+ },
28
+ "lint-staged" : {
29
+ "*.{js,vue}" : [
30
+ " eslint --fix" ,
31
+ " git add"
32
+ ]
33
+ },
23
34
"repository" : {
24
35
"url" : " ulivz/vuepress-theme-blog" ,
25
36
"type" : " git"
37
48
},
38
49
"devDependencies" : {
39
50
"conventional-changelog-cli" : " ^2.0.1" ,
51
+ "eslint" : " ^6.8.0" ,
52
+ "eslint-config-prettier" : " ^6.7.0" ,
40
53
"eslint-config-sherry" : " 0.0.1" ,
54
+ "eslint-plugin-prettier" : " ^3.1.2" ,
55
+ "eslint-plugin-vue" : " ^6.0.1" ,
56
+ "husky" : " ^3.1.0" ,
57
+ "lint-staged" : " ^9.5.0" ,
41
58
"vuepress" : " ^1.0.0"
42
59
},
43
60
"publishConfig" : {
You can’t perform that action at this time.
0 commit comments