Skip to content
This repository was archived by the owner on Feb 5, 2025. It is now read-only.

Commit 3a803f5

Browse files
author
Kevin D Smith
committed
Add git config files
1 parent 18cf305 commit 3a803f5

File tree

2 files changed

+90
-0
lines changed

2 files changed

+90
-0
lines changed

.gitattributes

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
* text=auto
2+
# enforce text on certain files
3+
*.py text
4+
*.pyx text
5+
*.pyd text
6+
*.c text
7+
*.h text
8+
*.html text
9+
*.csv text
10+
*.json text
11+
*.pickle binary
12+
*.h5 binary
13+
*.dta binary
14+
*.xls binary
15+
*.xlsx binary
16+
*.bat text eol=crlf
17+
*.html text

.gitignore

Lines changed: 73 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
## Editor temporary/working/backup files
2+
.#*
3+
*\#*\#
4+
[#]*#
5+
*~
6+
*$
7+
*.bak
8+
*.old
9+
*flymake*
10+
*.kdev4
11+
*.log
12+
*.swp
13+
*.swo
14+
*.pdb
15+
.project
16+
.pydevproject
17+
.settings
18+
.idea
19+
.vagrant
20+
.noseids
21+
.ipynb_checkpoints
22+
.tags
23+
24+
## Compiled source
25+
*.a
26+
*.com
27+
*.class
28+
*.dll
29+
*.dylib
30+
*.exe
31+
*.o
32+
*.py[ocd]
33+
*.so
34+
.build_cache_dir
35+
MANIFEST
36+
37+
## Python files
38+
# setup.py working directory
39+
build
40+
# sphinx build directory
41+
doc/_build
42+
# setup.py dist directory
43+
dist
44+
# Egg metadata
45+
*.egg-info
46+
.eggs
47+
.pypirc
48+
49+
## tox testing tool
50+
.tox
51+
# rope
52+
.ropeproject
53+
# wheel files
54+
*.whl
55+
**/wheelhouse/*
56+
# coverage
57+
.coverage
58+
cover/
59+
swat.egg-info/
60+
__pycache__/
61+
_stats.txt
62+
63+
## OS generated files
64+
.directory
65+
.gdb_history
66+
.DS_Store
67+
ehthumbs.db
68+
Icon?
69+
Thumbs.db
70+
71+
## Documentation generated files
72+
doc/build
73+
doc/source/generated

0 commit comments

Comments
 (0)