Skip to content

Commit 2f1553e

Browse files
committed
add special files
1 parent ccc003b commit 2f1553e

3 files changed

Lines changed: 174 additions & 0 deletions

File tree

.editorconfig

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
root = true
2+
3+
[*]
4+
charset = utf-8
5+
end_of_line = lf
6+
insert_final_newline = true
7+
indent_style = space
8+
tab_width = 4
9+
trim_trailing_whitespace = true
10+
11+
[*.py]
12+
max_line_length = 200
13+
14+
[*.yml]
15+
tab_width = 2
16+
17+
[{Makefile,Makefile.am,Makefile.in}]
18+
indent_style = tab
19+
20+
[*.{diff,patch}]
21+
trim_trailing_whitespace = false

.gitattributes

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
*.cmake text eol=lf
2+
*.conf text eol=lf
3+
*.diff text eol=lf
4+
*.md text eol=lf
5+
*.patch text eol=lf
6+
*.py text eol=lf
7+
*.txt text eol=lf
8+
*.yml text eol=lf
9+
*.am text eol=lf
10+
*.in text eol=lf

.gitignore

Lines changed: 143 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,143 @@
1+
# Conan specific
2+
**/test_package/build/
3+
**/test_package/build-*/
4+
**/test_package/test_output/
5+
conan.lock
6+
conanbuildinfo.cmake
7+
conanbuildinfo.txt
8+
conaninfo.txt
9+
graph_info.json
10+
build/
11+
.conanrunner/
12+
.conanrc
13+
14+
# CMake
15+
CMakeUserPresets.json
16+
17+
# IDEs
18+
.idea
19+
.vs
20+
.vscode
21+
.project
22+
.pydevproject
23+
.settings/
24+
.ropeproject/
25+
.devcontainer/
26+
## emacs
27+
*~
28+
29+
# Byte-compiled / optimized / DLL files / Cache
30+
__pycache__/
31+
**/test_package/__pycache__/
32+
*.pyc
33+
*.py[cod]
34+
*$py.class
35+
tmp/
36+
.DS_Store
37+
38+
# C extensions
39+
*.so
40+
41+
# Distribution / packaging
42+
.Python
43+
build/
44+
develop-eggs/
45+
dist/
46+
downloads/
47+
eggs/
48+
.eggs/
49+
lib/
50+
lib64/
51+
parts/
52+
sdist/
53+
var/
54+
wheels/
55+
*.egg-info/
56+
.installed.cfg
57+
*.egg
58+
MANIFEST
59+
60+
# PyInstaller
61+
# Usually these files are written by a python script from a template
62+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
63+
*.manifest
64+
*.spec
65+
66+
# Installer logs
67+
pip-log.txt
68+
pip-delete-this-directory.txt
69+
70+
# Unit test / coverage reports
71+
htmlcov/
72+
.tox/
73+
.coverage
74+
.coverage.*
75+
.cache
76+
nosetests.xml
77+
coverage.xml
78+
*.cover
79+
.hypothesis/
80+
.pytest_cache/
81+
82+
# Translations
83+
*.mo
84+
*.pot
85+
86+
# Django stuff:
87+
*.log
88+
local_settings.py
89+
db.sqlite3
90+
91+
# Flask stuff:
92+
instance/
93+
.webassets-cache
94+
95+
# Scrapy stuff:
96+
.scrapy
97+
98+
# Sphinx documentation
99+
docs/_build/
100+
101+
# PyBuilder
102+
target/
103+
104+
# Jupyter Notebook
105+
.ipynb_checkpoints
106+
107+
# pyenv
108+
.python-version
109+
110+
# celery beat schedule file
111+
celerybeat-schedule
112+
113+
# SageMath parsed files
114+
*.sage.py
115+
116+
# Environments
117+
.env
118+
.venv
119+
env/
120+
venv/
121+
ENV/
122+
env.bak/
123+
venv.bak/
124+
125+
# Spyder project settings
126+
.spyderproject
127+
.spyproject
128+
129+
# mkdocs documentation
130+
/site
131+
132+
# mypy
133+
.mypy_cache/
134+
135+
# scons build files
136+
*.dblite
137+
138+
# vim temp files
139+
.*.sw?
140+
.sw?
141+
Session.vim
142+
*~
143+
.undodir

0 commit comments

Comments
 (0)