File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -63,23 +63,31 @@ dependencies:
63
63
test -x ./node_modules || npm install --verbose
64
64
@echo " ################################################################################"
65
65
66
+ lint/json :
67
+ prettier --check ./src/** /* .json
68
+
66
69
lint/markdown :
67
70
markdownlint ' **/*.md' --ignore node_modules && echo ' ✔ Your code looks good.'
68
71
69
72
lint/yaml :
70
73
yamllint --stric . && echo ' ✔ Your code looks good.'
71
74
72
- lint : lint/markdown lint/yaml test/styling test/static
75
+ lint : lint/markdown lint/yaml lint/json test/styling test/static
73
76
74
77
test/static : dependencies
75
78
${NPM} run lint
76
79
77
80
test/styling : dependencies
78
81
${NPM} run style:check
79
82
80
- format : dependencies
83
+ format/sources : dependencies
81
84
${NPM} run style:format
82
85
86
+ format/json :
87
+ prettier --write ./src/** /* .json
88
+
89
+ format : format/sources format/json
90
+
83
91
test : env dependencies
84
92
${NPM} run jest:ci
85
93
You can’t perform that action at this time.
0 commit comments