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 8e4088d commit 1af3979Copy full SHA for 1af3979
2 files changed
.github/workflows/prettier.yml
@@ -0,0 +1,18 @@
1
+name: Prettier
2
+
3
+on:
4
+ pull_request:
5
+ push:
6
+ branches:
7
+ - main
8
9
+jobs:
10
+ prettier:
11
+ runs-on: ubuntu-latest
12
13
+ steps:
14
+ - name: Checkout
15
+ uses: actions/checkout@v4
16
17
+ - name: Prettify code
18
+ uses: creyD/prettier_action@v4.6
.prettierrc
@@ -1,5 +1,7 @@
{
"tabWidth": 4,
"bracketSameLine": true,
- "printWidth": 160
+ "printWidth": 160,
+ "semi": true,
+ "singleQuote": false
}
0 commit comments