Skip to content

Commit 1e36281

Browse files
committed
refactor: ran format
1 parent ae45a90 commit 1e36281

File tree

5 files changed

+19
-17
lines changed

5 files changed

+19
-17
lines changed

.github/pull_request_template.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@
88

99
<!-- Select one or more by replacing `[ ]` with `[x]` -->
1010

11-
- [ ] 🐛 Bug fix
12-
- [ ] ✨ New feature
13-
- [ ] 🛠 Refactor
14-
- [ ] 🧪 Test improvement
15-
- [ ] 📝 Docs update
16-
- [ ] ⚙️ CI/tooling
11+
- [ ] 🐛 Bug fix
12+
- [ ] ✨ New feature
13+
- [ ] 🛠 Refactor
14+
- [ ] 🧪 Test improvement
15+
- [ ] 📝 Docs update
16+
- [ ] ⚙️ CI/tooling
1717

1818
---
1919

CONTRIBUTING.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
It's fast because it **skips the VDOM entirely** — no state triggers, no diffing, no component redraws.
1515

1616
### If you contribute:
17+
1718
Stay **pre-rendered, declarative, and brutally fast.**
1819

1920
---
@@ -50,15 +51,15 @@ For questions, proposals, or early feedback. Share ideas before building.
5051

5152
Use the templates.
5253

53-
* **Bug** → Include steps to reproduce, expected vs. actual behavior.
54-
* **Feature** → Explain the *why*, and sketch a possible approach.
54+
- **Bug** → Include steps to reproduce, expected vs. actual behavior.
55+
- **Feature** → Explain the _why_, and sketch a possible approach.
5556

5657
### 3. Pull Requests
5758

58-
* Use semantic commit prefixes: `feat:`, `fix:`, `chore:`, `refactor:`
59-
* Add tests if you touch logic, CLI, or rendering behavior.
60-
* Keep PRs focused — one change per pull.
61-
* Fill out the PR template — no empty descriptions.
59+
- Use semantic commit prefixes: `feat:`, `fix:`, `chore:`, `refactor:`
60+
- Add tests if you touch logic, CLI, or rendering behavior.
61+
- Keep PRs focused — one change per pull.
62+
- Fill out the PR template — no empty descriptions.
6263

6364
---
6465

@@ -84,4 +85,3 @@ Keep it respectful. Push ideas hard, not people.
8485

8586
> Got a big idea? DM me:
8687
> [linkedin.com/in/austin-serb](https://www.linkedin.com/in/austin-serb/)
87-

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@
2929
"prettier": "^3.5.3",
3030
"release-please": "^17.0.0"
3131
}
32-
}
32+
}

packages/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@
2121
"tailwindcss": "^4.0.0",
2222
"@tailwindcss/postcss": "^4.1.8"
2323
}
24-
}
24+
}
Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
1-
import zeroUI from '@austinserb/react-zero-ui/vite';
1+
import zeroUI from "@austinserb/react-zero-ui/vite";
22
import { defineConfig } from 'vite';
33
import react from '@vitejs/plugin-react';
44

55
// https://vite.dev/config/
6-
export default defineConfig({ plugins: [react(), zeroUI()] });
6+
export default defineConfig({
7+
plugins: [react(), zeroUI()]
8+
});

0 commit comments

Comments
 (0)