Skip to content

Commit 835a755

Browse files
authored
Add .gitignore and CODEOWNERS file (#20)
1 parent 4c8cc64 commit 835a755

File tree

2 files changed

+54
-0
lines changed

2 files changed

+54
-0
lines changed

.github/CODEOWNERS

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Code owners file.
2+
# This file controls who is tagged for review for any given pull request.
3+
4+
# For anything not explicitly taken by someone else:
5+
* @c24t @carlosalberto @Oberon00 @reyang

.gitignore

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
*.py[cod]
2+
*.sw[op]
3+
4+
# C extensions
5+
*.so
6+
7+
# Packages
8+
*.egg
9+
*.egg-info
10+
dist
11+
build
12+
eggs
13+
parts
14+
bin
15+
var
16+
sdist
17+
develop-eggs
18+
.installed.cfg
19+
lib
20+
lib64
21+
__pycache__
22+
venv*/
23+
24+
# Installer logs
25+
pip-log.txt
26+
27+
# Unit test / coverage reports
28+
.coverage
29+
.nox
30+
.tox
31+
.cache
32+
htmlcov
33+
34+
# Translations
35+
*.mo
36+
37+
# Mac
38+
.DS_Store
39+
40+
# Mr Developer
41+
.mr.developer.cfg
42+
.project
43+
.pydevproject
44+
45+
# JetBrains
46+
.idea
47+
48+
# VSCode
49+
.vscode

0 commit comments

Comments
 (0)