2016-12-01 00:05:01 +01:00
|
|
|
#! /bin/bash
|
|
|
|
|
2017-02-15 18:31:31 +01:00
|
|
|
set -eu
|
2016-12-01 00:05:01 +01:00
|
|
|
|
|
|
|
# Ignoring distutils because: https://github.com/PyCQA/pylint/issues/73
|
|
|
|
# TODO: as code quality improves, make pylint be more strict
|
|
|
|
pylint -E --disable=inherit-non-class --disable=no-member \
|
|
|
|
--ignored-modules=distutils \
|
|
|
|
--enable=unused-import \
|
|
|
|
--enable=bad-whitespace \
|
|
|
|
--enable=line-too-long \
|
2016-12-14 00:08:29 +01:00
|
|
|
--enable=trailing-whitespace \
|
2016-12-14 00:16:12 +01:00
|
|
|
--enable=missing-final-newline \
|
2016-12-14 00:23:07 +01:00
|
|
|
--enable=mixed-indentation \
|
2016-12-01 00:05:01 +01:00
|
|
|
lbrynet $@
|