Skip to content

Commit fa1123f

Browse files
committed
format and faster github favorites
Signed-off-by: ericchase <[email protected]>
1 parent 16f9d4a commit fa1123f

31 files changed

+2870
-2979
lines changed

.github/workflows/pages.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ name: Deploy static content to Pages
44
on:
55
# Runs on pushes targeting the default branch
66
push:
7-
branches: ["master"]
7+
branches: ['master']
88

99
# Allows you to run this workflow manually from the Actions tab
1010
workflow_dispatch:
@@ -17,7 +17,7 @@ permissions:
1717

1818
# Allow one concurrent deployment
1919
concurrency:
20-
group: "pages"
20+
group: 'pages'
2121
cancel-in-progress: true
2222

2323
jobs:

.gitignore

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# Pnpm
2+
## Logs
3+
logs
4+
*.log
5+
npm-debug.log*
6+
yarn-debug.log*
7+
yarn-error.log*
8+
pnpm-debug.log*
9+
lerna-debug.log*
10+
11+
node_modules
12+
dist
13+
dist-ssr
14+
*.local
15+
16+
## Editor directories and files
17+
.vscode/*
18+
!.vscode/extensions.json
19+
.idea
20+
.DS_Store
21+
*.suo
22+
*.ntvs*
23+
*.njsproj
24+
*.sln
25+
*.sw?
26+
27+
# Other
28+
*.env
29+
*.exe
30+
build
31+
debug
32+
src-tauri/target

.prettierignore

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# prettier ignores files setup in .gitignore
2+
3+
docs
4+
5+
# Lock Files
6+
bun.lockb
7+
package-lock.json
8+
pnpm-lock.yaml
9+
yarn.lock

.prettierrc

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"endOfLine": "lf",
3+
"printWidth": 150,
4+
"singleQuote": true,
5+
"useTabs": false
6+
}

0 commit comments

Comments
 (0)