File tree Expand file tree Collapse file tree 6 files changed +234
-12
lines changed Expand file tree Collapse file tree 6 files changed +234
-12
lines changed Original file line number Diff line number Diff line change 14
14
15
15
# production
16
16
/build
17
+ /explorer
17
18
18
19
# misc
19
20
.DS_Store
Original file line number Diff line number Diff line change
1
+ out
2
+ explorer
Original file line number Diff line number Diff line change
1
+ {}
Original file line number Diff line number Diff line change @@ -29,6 +29,10 @@ watch-test: yarn.lock
29
29
30
30
lint :
31
31
yarn run lint
32
+ yarn run pretty:check
33
+
34
+ format :
35
+ yarn run pretty:write
32
36
33
37
clean :
34
38
rm -rf build
@@ -55,3 +59,5 @@ upgrade: clean install
55
59
jest@latest \
56
60
jest-environment-jsdom@latest \
57
61
next-router-mock@latest \
62
+ prettier@latest \
63
+ prettier-eslint@latest
Original file line number Diff line number Diff line change 7
7
"build" : " next build" ,
8
8
"start" : " next start" ,
9
9
"lint" : " next lint" ,
10
+ "pretty:check" : " prettier . --check" ,
11
+ "pretty:write" : " prettier . --write" ,
10
12
"test" : " jest --watch" ,
11
13
"test:ci" : " jest --ci"
12
14
},
30
32
"eslint-config-next" : " ^13.5.4" ,
31
33
"jest" : " ^29.7.0" ,
32
34
"jest-environment-jsdom" : " ^29.7.0" ,
33
- "next-router-mock" : " ^0.9.10"
35
+ "next-router-mock" : " ^0.9.10" ,
36
+ "prettier" : " 3.0.3" ,
37
+ "prettier-eslint" : " ^15.0.1"
34
38
}
35
- }
39
+ }
You can’t perform that action at this time.
0 commit comments