File tree Expand file tree Collapse file tree 4 files changed +19
-2
lines changed Expand file tree Collapse file tree 4 files changed +19
-2
lines changed Original file line number Diff line number Diff line change 15
15
16
16
- name : Set up PureScript toolchain
17
17
uses : purescript-contrib/setup-purescript@main
18
+ with :
19
+ purs-tidy : " latest"
18
20
19
21
- name : Cache PureScript dependencies
20
22
uses : actions/cache@v2
25
27
output
26
28
27
29
- name : Set up Node toolchain
28
- uses : actions/setup-node@v1
30
+ uses : actions/setup-node@v2
29
31
with :
30
- node-version : " 12 .x"
32
+ node-version : " 14 .x"
31
33
32
34
- name : Cache NPM dependencies
33
35
uses : actions/cache@v2
49
51
50
52
- name : Run tests
51
53
run : npm run test
54
+
55
+ - name : Check formatting
56
+ run : purs-tidy check src test
Original file line number Diff line number Diff line change 2
2
! .gitignore
3
3
! .github
4
4
! .editorconfig
5
+ ! .tidyrc.json
5
6
! .eslintrc.json
6
7
7
8
output
Original file line number Diff line number Diff line change
1
+ {
2
+ "importSort" : " source" ,
3
+ "importWrap" : " source" ,
4
+ "indent" : 2 ,
5
+ "operatorsFile" : null ,
6
+ "ribbon" : 1 ,
7
+ "typeArrowPlacement" : " first" ,
8
+ "unicode" : " never" ,
9
+ "width" : null
10
+ }
Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ New features:
11
11
Bugfixes:
12
12
13
13
Other improvements:
14
+ - Added ` purs-tidy ` formatter (#26 by @thomashoneyman )
14
15
15
16
## [ v7.0.0] ( https://github.com/purescript-contrib/purescript-react-dom/releases/tag/v7.0.0 ) - 2021-02-26
16
17
You can’t perform that action at this time.
0 commit comments