Skip to content

Commit 13fd446

Browse files
authored
Merge pull request #54 from flaport/refactor
Big refactoring
2 parents 23d2a01 + 1dc8e08 commit 13fd446

60 files changed

Lines changed: 3417 additions & 1579 deletions

Some content is hidden

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

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
*.log
77
*.manifest
88
*.mo
9+
*.pdf
910
*.pot
1011
*.py,cover
1112
*.py[cod]

.pre-commit-config.yaml

Lines changed: 26 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,30 @@
11
repos:
2+
- repo: local
3+
hooks:
4+
- id: nbclean
5+
name: nbclean
6+
entry: just nbclean
7+
language: system
8+
types_or: [jupyter]
9+
files: \.(ipynb)$
10+
- repo: local
11+
hooks:
12+
- id: ty
13+
name: ty
14+
entry: uv run --dev ty check
15+
language: system
16+
types_or: [python, jupyter]
17+
- repo: https://github.com/astral-sh/ruff-pre-commit
18+
rev: v0.15.6
19+
hooks:
20+
- id: ruff-format
21+
stages: [pre-commit]
22+
args: ["--config", "pyproject.toml"]
23+
types_or: [python, pyi, jupyter]
24+
- id: ruff-check
25+
stages: [pre-commit]
26+
args: ["--fix", "--config", "pyproject.toml"]
27+
types_or: [python, pyi, jupyter]
228
- repo: https://github.com/pre-commit/pre-commit-hooks
329
rev: "v5.0.0"
430
hooks:
@@ -16,37 +42,8 @@ repos:
1642
- id: trailing-whitespace
1743
args: [--markdown-linebreak-ext=md]
1844
exclude: 'changelog\.d/.*|CHANGELOG\.md'
19-
20-
- repo: https://github.com/astral-sh/ruff-pre-commit
21-
rev: v0.9.5
22-
hooks:
23-
- id: ruff-format
24-
stages: [pre-commit]
25-
args: ["--config", "pyproject.toml"]
26-
types_or: [python, jupyter]
27-
- id: ruff
28-
stages: [pre-commit]
29-
args: ["--fix", "--config", "pyproject.toml"]
30-
types_or: [python]
31-
3245
- repo: https://github.com/macisamuele/language-formatters-pre-commit-hooks
3346
rev: v2.14.0
3447
hooks:
3548
- id: pretty-format-toml
3649
args: [--autofix]
37-
38-
- repo: local
39-
hooks:
40-
- id: nbclean
41-
name: nbclean
42-
entry: just nbclean
43-
language: system
44-
files: \.(ipynb)$
45-
46-
- repo: local
47-
hooks:
48-
- id: pyright
49-
name: pyright
50-
entry: uv run --no-sync pyright
51-
language: system
52-
files: \.(py)$

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
[![PyPI version](https://badge.fury.io/py/meow-sim.svg)](https://badge.fury.io/py/meow-sim)
66

7-
![MEOW LOGO](docs/assets/logo-small.png)
7+
![MEOW LOGO](docs/assets/logo.svg)
88

99

1010

0 commit comments

Comments
 (0)