We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b276f17 commit 32e95e9Copy full SHA for 32e95e9
ui/Makefile
@@ -0,0 +1,16 @@
1
+CHECKDIRS := src
2
+
3
4
+# Run checks on all files for the repo
5
+quality:
6
+ @echo "Running quality checks";
7
+ @# Run eslint checks
8
+ npx eslint --max-warnings 10 $(CHECKDIRS)
9
+ @# Run TypeScript checks
10
+ npx tsc --noEmit
11
12
+# Style the code according to accepted standards for the repo
13
+style:
14
+ @echo "Running styling";
15
+ @# Auto fix any eslint issues
16
+ npx eslint --fix $(CHECKDIRS)
0 commit comments