Skip to content

Commit

Permalink
Linting-automation
Browse files Browse the repository at this point in the history
  • Loading branch information
danielperna84 committed Aug 15, 2017
1 parent 89e5d92 commit 1587931
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .travix.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
sudo: false
matrix:
fast_finish: true
include:
- python: "3.4"
env: TOXENV=lint
- python: "3.5"
env: TOXENV=lint
install: pip install -U tox
language: python
script: tox
21 changes: 21 additions & 0 deletions pylintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
[MASTER]
reports=no

disable=
too-many-lines,
missing-docstring,
global-statement,
global-variable-not-assigned,
too-many-return-statements,
too-many-nested-blocks,
too-many-statements,
too-many-branches,
too-many-locals,
unused-argument,
logging-not-lazy,
invalid-name,
broad-except,
line-too-long,
unnecessary-pass,
anomalous-backslash-in-string,
redefined-variable-type,

0 comments on commit 1587931

Please sign in to comment.