Skip to content

Commit 14a16e8

Browse files
authored
Merge pull request #14 from dev-five-git/main
ㅁㄴㅇㄹ
2 parents c0e5e4b + 7eca624 commit 14a16e8

File tree

208 files changed

+8345
-3854
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

208 files changed

+8345
-3854
lines changed

.changeset/config.json

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
11
{
22
"$schema": "https://unpkg.com/@changesets/[email protected]/schema.json",
3-
"changelog": "@changesets/cli/changelog",
3+
"changelog": [
4+
"@changesets/changelog-github",
5+
{ "repo": "dev-five-git/devup-ui" }
6+
],
47
"commit": false,
58
"fixed": [],
69
"linked": [],
710
"access": "restricted",
811
"baseBranch": "main",
912
"updateInternalDependencies": "patch",
10-
"ignore": [
11-
"*-example",
12-
"*-benchmark",
13-
"landing"
14-
]
15-
}
13+
"ignore": ["*-example", "*-benchmark", "landing"]
14+
}

.github/FUNDING.yml

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,5 @@
11
# These are supported funding model platforms
22

3-
github: owjs3901
3+
github: dev-five-git
44
patreon: JeongMinOh
55
open_collective: devup-ui
6-
ko_fi: # Replace with a single Ko-fi username
7-
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
8-
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
9-
liberapay: # Replace with a single Liberapay username
10-
issuehunt: # Replace with a single IssueHunt username
11-
otechie: # Replace with a single Otechie username
12-
custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']

.github/workflows/publish.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,10 @@ jobs:
2020
uses: actions/checkout@v4
2121

2222
- uses: actions-rust-lang/setup-rust-toolchain@v1
23-
- name: Cargo tarpaulin
24-
run: cargo install cargo-tarpaulin
23+
- name: Cargo tarpaulin and fmt
24+
run: |
25+
cargo install cargo-tarpaulin
26+
rustup component add rustfmt clippy
2527
- uses: pnpm/action-setup@v4
2628
name: Install pnpm
2729
with:

.husky/pre-commit

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
pnpm lint-staged

.lintstagedrc.mjs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
export default {
2+
'**/*.{js,jsx,ts,tsx,mjs,md,mdx,json,json5,jsonc}': (files) => {
3+
return [
4+
`npx eslint --config eslint.config.mjs --fix ${files.join(' ')}`,
5+
`git add ${files.join(' ')}`,
6+
]
7+
},
8+
}

0 commit comments

Comments
 (0)