-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Expand file tree
/
Copy path.gitignore
More file actions
58 lines (51 loc) · 805 Bytes
/
.gitignore
File metadata and controls
58 lines (51 loc) · 805 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
*.iml
*.so
*.pyd
*.pdb
*.ipynb
.ENV
.env
.ipynb_checkpoints/
.python-version
.yarn/
coverage.lcov
coverage.xml
profile.json
polars/vendor
_polars_runtime*/
# OS
.DS_Store
# IDE
.idea/
.vscode/
.vim
# Python
.hypothesis/
.mypy_cache/
.pytest_cache/
.ruff_cache/
.venv*/
__pycache__/
.coverage
*.egg-info
# Rust
target/
.cargo/config.toml
# Data
*.csv
*.parquet
*.feather
*.tbl
# Project
/docs/assets/data/*
!/docs/assets/data/alltypes_plain.parquet
!/docs/assets/data/apple_stock.csv
!/docs/assets/data/iris.csv
!/docs/assets/data/monopoly_props_groups.csv
!/docs/assets/data/monopoly_props_prices.csv
!/docs/assets/data/pokemon.csv
!/docs/assets/data/reddit.csv
/docs/assets/people.md
# User specific source setups
# You can put anything here that needs to be done to prepare your env.
.user_env.*