Skip to content

Commit 32bbeb3

Browse files
committed
fix comments
1 parent 8282338 commit 32bbeb3

File tree

6 files changed

+29
-14
lines changed

6 files changed

+29
-14
lines changed

.editorconfig

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
root = true
2+
3+
[*]
4+
charset = utf-8
5+
end_of_line = lf
6+
insert_final_newline = true
7+
trim_trailing_whitespace = true
8+
indent_style = tab
9+
indent_size = 2
10+
tab_width = 2
11+
12+
[*.py]
13+
indent_style = space
14+
indent_size = 4
15+
16+
[*.md]
17+
indent_style = space
18+
indent_size = 2

.github/workflows/qa.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ jobs:
2323
run: |
2424
curl --location --silent --show-error --fail https://astral.sh/uv/install.sh | sh
2525
export PATH="$HOME/.local/bin:$PATH"
26-
uv sync
2726
uv sync --dev
2827
- name: Run QA
2928
run: make qa

.github/workflows/release.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ jobs:
2929
run: |
3030
curl --location --silent --show-error --fail https://astral.sh/uv/install.sh | sh
3131
export PATH="$HOME/.local/bin:$PATH"
32-
uv sync
3332
uv sync --dev
3433
- name: Run QA
3534
run: make qa

.gitignore

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,5 @@ dist/
3131
htmlcov/
3232
.tox/
3333

34-
# IDE
35-
.idea/
36-
.vscode/
37-
.ipynb_checkpoints/
38-
3934
# OS generated files and folders
4035
.DS_Store

Makefile

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,4 +51,14 @@ typecheck:
5151
@echo "Running type checking..."
5252
@uv run pyright $(PACKAGE)
5353

54-
.PHONY: analyze build coverage format help lock qa security test typecheck clean
54+
.PHONY: analyze \
55+
build \
56+
coverage \
57+
format \
58+
help \
59+
lock \
60+
qa \
61+
security \
62+
test \
63+
typecheck \
64+
clean

pyproject.toml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,6 @@ build-backend = "hatchling.build"
3030
exclude_dirs = ["tests", ".venv"]
3131
skips = ["B101"]
3232

33-
[tool.editorconfig]
34-
general = { charset = "utf-8", end_of_line = "lf", insert_final_newline = true, trim_trailing_whitespace = true }
35-
defaults = { indent_style = "tab", indent_size = 2, tab_width = 2 }
36-
python = { indent_style = "space", indent_size = 4, file_pattern = "*.py" }
37-
markdown = { indent_style = "space", indent_size = 2, file_pattern = "*.md" }
38-
3933
[tool.hatch.build.targets.wheel]
4034
packages = ["eventsourcingdb"]
4135

0 commit comments

Comments
 (0)