Skip to content
This repository was archived by the owner on Oct 4, 2023. It is now read-only.

Commit 0dc1e47

Browse files
committedFeb 18, 2016
Add pylint, coala, prospector configs, but don't enforce
1 parent 3918486 commit 0dc1e47

File tree

3 files changed

+18
-0
lines changed

3 files changed

+18
-0
lines changed
 

‎.coafile

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
[Default]
2+
bears = SpaceConsistencyBear,PyLintBear,PyCommentedCodeBear,PEP8Bear,PyUnusedCodeBear
3+
files = src/**/*.py
4+
use_spaces = yes
5+
pylint_disable = W0702,C0122,R0902,W0613,W0621,W0511,C0411,C0412,W0141,W0703,W0223,W0631,R0204,C0111,C0301,W0403,E0401,R0201,C0103

‎.prospector.yaml

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
strictness: veryhigh
2+
test-warnings: false
3+
doc-warnings: false
4+
5+
pep8:
6+
disable:
7+
- W503
8+

‎.pylintrc

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
[MESSAGES CONTROL]
2+
disable=import-error,no-self-use,invalid-name,missing-docstring,line-too-long,relative-import,wrong-import-order,broad-except,bare-except,unused-argument,fixme,too-many-instance-attributes,ungrouped-imports
3+
4+
[REPORTS]
5+
reports=no

0 commit comments

Comments
 (0)
This repository has been archived.