Skip to content

Commit 996e0fa

Browse files
authored
chore: rework .gitignore file, delete liccheck.ini file (#287)
1 parent ae50ec2 commit 996e0fa

File tree

2 files changed

+50
-11
lines changed

2 files changed

+50
-11
lines changed

.gitignore

Lines changed: 50 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,79 @@
1-
target/
1+
# Python .gitignore (https://github.com/github/gitignore/blob/main/Python.gitignore) -- cherry-picked ##################
22

33
# Byte-compiled / optimized / DLL files
44
__pycache__/
5-
.pytest_cache/
65
*.py[cod]
6+
*$py.class
77

88
# C extensions
99
*.so
1010

1111
# Distribution / packaging
1212
.Python
13-
.venv/
14-
env/
15-
bin/
1613
build/
1714
develop-eggs/
1815
dist/
16+
downloads/
1917
eggs/
18+
.eggs/
2019
lib/
2120
lib64/
2221
parts/
2322
sdist/
2423
var/
25-
include/
26-
man/
27-
venv/
24+
wheels/
25+
share/python-wheels/
2826
*.egg-info/
2927
.installed.cfg
3028
*.egg
31-
multirun/
29+
MANIFEST
3230

3331
# Unit test / coverage reports
32+
htmlcov/
33+
.tox/
34+
.nox/
35+
.coverage
36+
.coverage.*
37+
.cache
38+
nosetests.xml
39+
coverage.xml
40+
*.cover
41+
*.py,cover
3442
.hypothesis/
43+
.pytest_cache/
44+
cover/
3545

3646
# Jupyter Notebook
3747
.ipynb_checkpoints
3848

39-
# Prevent publishing file with third party licenses
40-
THIRD-PARTY-LICENSES
49+
# Environments
50+
.env
51+
.venv
52+
env/
53+
venv/
54+
ENV/
55+
env.bak/
56+
venv.bak/
57+
58+
# mypy
59+
.mypy_cache/
60+
.dmypy.json
61+
dmypy.json
62+
63+
# Hydra (https://hydra.cc/)
64+
multirun/
65+
66+
# Rust .gitignore (https://github.com/github/gitignore/blob/main/Rust.gitignore) -- cherry-picked ######################
67+
68+
# Generated by Cargo
69+
# will have compiled files and executables
70+
s3torchconnectorclient/debug/
71+
s3torchconnectorclient/target/
72+
73+
# These are backup files generated by rustfmt
74+
s3torchconnectorclient/**/*.rs.bk
75+
76+
# Other ################################################################################################################
77+
78+
# JetBrains
79+
.idea/

liccheck.ini

Whitespace-only changes.

0 commit comments

Comments
 (0)