Skip to content

Commit e27b3d0

Browse files
committed
chore: initial commit
0 parents  commit e27b3d0

292 files changed

Lines changed: 75106 additions & 0 deletions

File tree

Some content is hidden

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

.editorconfig

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# EditorConfig helps maintain consistent coding styles for multiple developers
2+
# working on the same project across various editors and IDEs.
3+
# EditorConfig doc: https://editorconfig.org
4+
5+
# top-most EditorConfig file
6+
root = true
7+
8+
# Unix-style newlines with a newline ending every file
9+
[*]
10+
charset = utf-8
11+
end_of_line = lf
12+
insert_final_newline = true
13+
14+
# .py settings
15+
[*.py]
16+
indent_size = 4
17+
indent_style = space
18+
19+
# .sh settings
20+
[*.sh]
21+
indent_size = 4
22+
indent_style = space
23+
24+
# .toml settings
25+
[*.toml]
26+
indent_size = 4
27+
indent_style = space

.gitignore

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
# macOS
2+
*.DS_Store
3+
4+
# Python bytecode and caches
5+
*.pyc
6+
__pycache__/
7+
.mypy_cache/
8+
.ruff_cache/
9+
10+
# Editor / IDE
11+
.*.sw[pon]
12+
*~
13+
.idea
14+
.vscode
15+
.pycharmrc
16+
.ipynb_checkpoints
17+
18+
# Build artifacts
19+
*.egg-info
20+
/build
21+
/dist
22+
/*whl
23+
docs/build/
24+
docs/src/api/generated/
25+
26+
# Coverage / test results
27+
.coverage*
28+
.cache/
29+
coverage.xml
30+
test-results/
31+
logs/
32+
pytest-results.xml
33+
.lycheecache
34+
data/
35+
tests/_test_data/
36+
37+
# Virtual environments / dependency lock
38+
.coreai-opt-venv
39+
.envrc
40+
.venv*
41+
uv.lock
42+
43+
# Misc
44+
*.npy
45+
*.o
46+
*.so
47+
*.nc
48+
.python-version
49+
/.tox
50+
deps/
51+
scratch/
52+
/local_stash
53+
/model_weights
54+
mypy.ini
55+
56+
# Local-only working directory
57+
.local/

0 commit comments

Comments
 (0)