Skip to content

Commit 7fe99e9

Browse files
sanathkrjfuss
authored andcommitted
Adding dotfiles for Travis, Flake, Coverage and Pylint (#359)
1 parent 0433e9d commit 7fe99e9

File tree

6 files changed

+528
-15
lines changed

6 files changed

+528
-15
lines changed

.coveragerc

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
[run]
2+
branch = True
3+
[report]
4+
exclude_lines =
5+
pragma: no cover
6+
raise NotImplementedError.*

.flake8

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[flake8]
2+
max-line-length = 120
3+
ignore = E126

.github/ISSUE_TEMPLATE.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
<!--
2+
3+
Before reporting a new issue, make sure we don't have any duplicates already open or closed by
4+
searching the issues list. If there is a duplicate, re-open or add a comment to the
5+
existing issue instead of creating a new one. If you are reporting a bug,
6+
make sure to include relevant information asked below to help with debugging.
7+
8+
## GENERAL HELP QUESTIONS ##
9+
Github Issues is for bug reports and feature requests. If you have general support
10+
questions, the following locations are a good place:
11+
12+
- Post a question in StackOverflow with "aws-sam" tag
13+
14+
-->
15+
16+
**Description:**
17+
18+
<!-- Briefly describe the problem you are facing -->
19+
20+
**Steps to reproduce the issue:**
21+
1.
22+
2.
23+
3.
24+
25+
**Observed result:**
26+
27+
**Expected result:**
28+

.gitignore

Lines changed: 111 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,115 @@
11
.DS_Store
22
node_modules
33
docs/website/_build
4+
5+
# Byte-compiled / optimized / DLL files
6+
__pycache__/
7+
*.py[cod]
8+
*$py.class
9+
10+
# C extensions
11+
*.so
12+
13+
# Distribution / packaging
14+
.Python
15+
build/
16+
develop-eggs/
17+
dist/
18+
downloads/
19+
eggs/
20+
.eggs/
21+
lib/
22+
lib64/
23+
parts/
24+
sdist/
25+
var/
26+
wheels/
27+
*.egg-info/
28+
.installed.cfg
29+
*.egg
30+
MANIFEST
31+
32+
# PyInstaller
33+
# Usually these files are written by a python script from a template
34+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
35+
*.manifest
36+
*.spec
37+
38+
# Installer logs
39+
pip-log.txt
40+
pip-delete-this-directory.txt
41+
42+
# Unit test / coverage reports
43+
htmlcov/
44+
.tox/
45+
.coverage
46+
.coverage.*
47+
.cache
48+
nosetests.xml
49+
coverage.xml
50+
*.cover
51+
.hypothesis/
52+
.pytest_cache/
53+
54+
# Translations
55+
*.mo
56+
*.pot
57+
58+
# Django stuff:
59+
*.log
60+
.static_storage/
61+
.media/
62+
local_settings.py
63+
64+
# Flask stuff:
65+
instance/
66+
.webassets-cache
67+
68+
# Scrapy stuff:
69+
.scrapy
70+
71+
# Sphinx documentation
72+
docs/_build/
73+
74+
# PyBuilder
75+
target/
76+
77+
# Jupyter Notebook
78+
.ipynb_checkpoints
79+
80+
# pyenv
81+
.python-version
82+
83+
# celery beat schedule file
84+
celerybeat-schedule
85+
86+
# SageMath parsed files
87+
*.sage.py
88+
89+
# Environments
90+
.env
91+
.venv
92+
env/
93+
venv/
94+
ENV/
95+
env.bak/
96+
venv.bak/
97+
98+
# Spyder project settings
99+
.spyderproject
100+
.spyproject
101+
102+
# Rope project settings
103+
.ropeproject
104+
105+
# mkdocs documentation
106+
/site
107+
108+
# mypy
109+
.mypy_cache/
110+
111+
# VSCode
4112
.vscode
5-
.idea
113+
114+
# PyCharm
115+
.idea

0 commit comments

Comments
 (0)