File tree 1 file changed +6
-8
lines changed 1 file changed +6
-8
lines changed Original file line number Diff line number Diff line change @@ -67,28 +67,26 @@ dependencies:
67
67
${PACKAGE_TOOL} install -r requirements.txt
68
68
@echo " ################################################################################"
69
69
70
+ lint/json :
71
+ prettier --check ./src/** /* .json
72
+
70
73
lint/markdown :
71
74
markdownlint ' **/*.md' --ignore node_modules && echo ' ✔ Your code looks good.'
75
+
72
76
lint/yaml :
73
77
yamllint --stric . && echo ' ✔ Your code looks good.'
74
78
75
- lint : lint/markdown lint/yaml test/styling test/static
79
+ lint : lint/markdown lint/yaml lint/json test/styling test/static
76
80
77
81
test/static : dependencies
78
82
${RUNTIME_TOOL} -m pylint --verbose --recursive yes src/
79
83
${RUNTIME_TOOL} -m flake8 --verbose src/
80
84
${RUNTIME_TOOL} -m pyright --verbose src/
81
85
82
-
83
- test/styling/json : dependencies
84
- prettier --check ./src/** /* .json
85
-
86
- test/styling/sources : dependencies
86
+ test/styling : dependencies
87
87
${RUNTIME_TOOL} -m pycodestyle --statistics src/
88
88
${RUNTIME_TOOL} -m autopep8 --diff --recursive --exit-code --verbose .
89
89
90
- test/styling : dependencies test/styling/sources test/styling/json
91
-
92
90
format/json :
93
91
prettier --write ./src/** /* .json
94
92
You can’t perform that action at this time.
0 commit comments