Skip to content

Commit 4376bda

Browse files
committed
style: prettier
1 parent 7768c73 commit 4376bda

36 files changed

+742
-1465
lines changed

.eslintignore

-3
This file was deleted.

.eslintrc.json

-14
This file was deleted.

.github/workflows/update-prettier.yml

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Update Prettier
2+
"on":
3+
push:
4+
branches:
5+
- dependabot/npm_and_yarn/prettier-*
6+
jobs:
7+
update_prettier:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v2
11+
- uses: actions/setup-node@v1
12+
with:
13+
version: 12
14+
- run: npm ci
15+
- run: "npm run lint:fix"
16+
- uses: gr2m/[email protected]
17+
env:
18+
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
19+
with:
20+
title: Prettier updated
21+
body: An update to prettier required updates to your code.
22+
branch: "${{ github.ref }}"
23+
commit-message: "style: prettier"

0 commit comments

Comments
 (0)