Skip to content

Commit 26a9b1e

Browse files
committed
chore: proper prettier config 2
1 parent a5efd3a commit 26a9b1e

File tree

8 files changed

+2666
-1212
lines changed

8 files changed

+2666
-1212
lines changed

.github/dependabot.yml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -5,25 +5,25 @@
55

66
version: 2
77
updates:
8-
- package-ecosystem: "docker"
8+
- package-ecosystem: 'docker'
99
directories:
10-
- "**/*"
10+
- '**/*'
1111
schedule:
12-
interval: "monthly"
13-
day: "saturday"
14-
time: "00:00"
12+
interval: 'monthly'
13+
day: 'saturday'
14+
time: '00:00'
1515

16-
- package-ecosystem: "github-actions"
17-
directory: "/"
16+
- package-ecosystem: 'github-actions'
17+
directory: '/'
1818
schedule:
19-
interval: "monthly"
20-
day: "saturday"
21-
time: "00:00"
19+
interval: 'monthly'
20+
day: 'saturday'
21+
time: '00:00'
2222

23-
- package-ecosystem: "npm"
23+
- package-ecosystem: 'npm'
2424
directories:
25-
- "**/*"
25+
- '**/*'
2626
schedule:
27-
interval: "monthly"
28-
day: "saturday"
29-
time: "00:00"
27+
interval: 'monthly'
28+
day: 'saturday'
29+
time: '00:00'

.github/workflows/claude-bot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,4 +79,4 @@ jobs:
7979
INPUT_IS_PULL_REQUEST: ${{ github.event.issue.pull_request != null }}
8080
CLAUDE_CODE_OAUTH_TOKEN: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }}
8181
ANTHROPIC_BASE_URL: ${{ secrets.ANTHROPIC_BASE_URL }}
82-
run: bun run start
82+
run: bun run start

CLAUDE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Ftv is a browser extension for Fansly that adds emote support from popular platf
1414

1515
## Rules
1616

17-
- **ALWAYS** run `pnpm check` after making changes!
17+
- **ALWAYS** run `pnpm check && pnpm lint` after making changes!
1818

1919
## Architecture
2020

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"zip:firefox": "wxt zip -b firefox",
1414
"check": "svelte-check --tsconfig ./tsconfig.json",
1515
"postinstall": "wxt prepare",
16-
"pretty": "prettier --write \"./**/*.{js,jsx,mjs,cjs,ts,tsx,json,svelte}\"",
16+
"lint": "prettier --write . --plugin 'prettier-plugin-svelte' --cache | { grep -v '(unchanged)' || true; }",
1717
"release": "wxt zip && wxt zip -b firefox"
1818
},
1919
"devDependencies": {

0 commit comments

Comments
 (0)