Skip to content

Commit 1b6a472

Browse files
committed
Add avatar, button and icon components
1 parent 0805c62 commit 1b6a472

File tree

16 files changed

+2315
-0
lines changed

16 files changed

+2315
-0
lines changed

.gitignore

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
.web
2+
.states
3+
*.db
4+
*.py[cod]
5+
assets/external/
6+
__pycache__/
7+
.ruff_cache/
8+
.venv/
9+
playground/

.pre-commit-config.yaml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
fail_fast: true
2+
3+
repos:
4+
- repo: https://github.com/charliermarsh/ruff-pre-commit
5+
rev: v0.11.9
6+
hooks:
7+
- id: ruff-format
8+
files: ^reflex_ui/
9+
- id: ruff
10+
files: ^reflex_ui/
11+
args: ["--fix", "--exit-non-zero-on-fix", "--no-unsafe-fixes"]
12+
13+
- repo: https://github.com/codespell-project/codespell
14+
rev: v2.4.1
15+
hooks:
16+
- id: codespell
17+
files: ^reflex_ui/
18+
19+
- repo: https://github.com/RobertCraigie/pyright-python
20+
rev: v1.1.401
21+
hooks:
22+
- id: pyright
23+
files: ^reflex_ui/
24+
language: system

0 commit comments

Comments
 (0)