Skip to content

Commit dc20cc0

Browse files
Introduce purs-tidy formatter (#182)
* Add purs-tidy formatter * Run purs-tidy * review
1 parent 0df83a6 commit dc20cc0

File tree

10 files changed

+339
-293
lines changed

10 files changed

+339
-293
lines changed

.github/workflows/ci.yml

+7-2
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ jobs:
1515

1616
- name: Set up PureScript toolchain
1717
uses: purescript-contrib/setup-purescript@main
18+
with:
19+
purs-tidy: "latest"
1820

1921
- name: Cache PureScript dependencies
2022
uses: actions/cache@v2
@@ -25,9 +27,9 @@ jobs:
2527
output
2628
2729
- name: Set up Node toolchain
28-
uses: actions/setup-node@v1
30+
uses: actions/setup-node@v2
2931
with:
30-
node-version: "12.x"
32+
node-version: "14.x"
3133

3234
- name: Cache NPM dependencies
3335
uses: actions/cache@v2
@@ -49,3 +51,6 @@ jobs:
4951

5052
- name: Run tests
5153
run: npm run test
54+
55+
- name: Check formatting
56+
run: purs-tidy check src test

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
!.gitignore
33
!.github
44
!.editorconfig
5+
!.tidyrc.json
56
!.eslintrc.json
67

78
output

.tidyrc.json

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
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+
}

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ New features:
1111
Bugfixes:
1212

1313
Other improvements:
14+
- Added `purs-tidy` formatter (#182 by @thomashoneyman)
1415

1516
## [v9.0.0](https://github.com/purescript-contrib/purescript-react/releases/tag/v9.0.0) - 2021-02-26
1617

0 commit comments

Comments
 (0)