summaryrefslogtreecommitdiff
path: root/.pylintrc
Commit message (Collapse)AuthorAgeFilesLines
* plugin: bake API to get and validate a project pathTiago Gomes2018-08-021-1/+1
| | | | | | | | A project path is a path relative to a project directory. A project path can not also refer to the parent directory in the first path component, or point to symbolic links, fifos, sockets and block/character devices.
* setup.py: Add grpcio dependency and support for code generationJürg Billeter2018-07-171-2/+2
| | | | This allows code generation with ./setup.py build_grpc
* .pylintrc: Enable attribute-defined-outside-init messagesTristan Van Berkom2018-04-201-1/+0
| | | | | | | This will give us an error if an instance attribute is ever declared outside of the constructor, which usually constitutes either a bug or a violation of the coding standard, rendering code more difficult to read.
* .pylintrc: Enable linting for unused variablesTristan Van Berkom2018-04-191-1/+0
|
* .pylintrc: Enable unused-import checkerJürg Billeter2018-03-251-1/+0
|
* .pylintrc: Ensure pylint ignores gi.repository module as it dynamically adds ↵James Ennis2018-03-161-1/+1
| | | | classes
* pylint - dealt with whitespace issues and disabled pep8 warningsJames Ennis2018-03-141-2/+0
|
* pylint - dealt with simplifiable-if-statement warningJames Ennis2018-03-141-2/+0
|
* pylint - dealt with redefined-outer-name and redefined-built in warningsJames Ennis2018-03-141-4/+0
|
* pylint - dealt with redefined-argument-from-local warningJames Ennis2018-03-141-1/+0
|
* pylint - dealt with unnecessary-pass warningJames Ennis2018-03-141-1/+0
|
* pylint - dealt with import warningsJames Ennis2018-03-141-4/+0
|
* pylint - dealt with unidiomatic-typecheck warningJames Ennis2018-03-141-3/+0
|
* pylint - dealt with superfluous-parens warningJames Ennis2018-03-141-3/+0
|
* pylint - disabled no-member, bad-exception-context and ↵James Ennis2018-03-141-10/+3
| | | | catching-non-exception warnings
* pylint - dealt with len-as-condition warningJames Ennis2018-03-141-1/+0
|
* pylint - dealt with global-statement warningJames Ennis2018-03-141-1/+0
|
* pylint - dealt with dangerous-default-value warningJames Ennis2018-03-141-1/+0
|
* pylint - dealt with consider-merging-isinstance warningsJames Ennis2018-03-141-1/+0
|
* pylint - dealt with broad-except and bare-except warningsJames Ennis2018-03-141-2/+0
|
* pylint - dealt with bad-continuation warningJames Ennis2018-03-141-1/+0
|
* pylint - dealt with anomalous-backslash-in-string warningJames Ennis2018-03-141-1/+0
|
* .pylintrc: Alterations to the configuration fileJames Ennis2018-03-141-10/+5
|
* .pylintrc: Amend which warning messages are disabledJames Ennis2018-03-141-73/+96
| | | | | | NOTE: We have categorised the warning messages into two groups. Those that are of no use to us in the buildstream project and those that should be enabled at some point.
* Generate pylint configuration file (pristine file):James Ennis2018-03-141-0/+539
NOTE: pylint was installed using pip: `pip3 install pylint` and .pylintrc is the pylint configuration file which was generated with `pylint --generate-rcfile` from a fresh fedora-27 docker image.