Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | plugin: bake API to get and validate a project path | Tiago Gomes | 2018-08-02 | 1 | -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 generation | Jürg Billeter | 2018-07-17 | 1 | -2/+2 |
| | | | | This allows code generation with ./setup.py build_grpc | ||||
* | .pylintrc: Enable attribute-defined-outside-init messages | Tristan Van Berkom | 2018-04-20 | 1 | -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 variables | Tristan Van Berkom | 2018-04-19 | 1 | -1/+0 |
| | |||||
* | .pylintrc: Enable unused-import checker | Jürg Billeter | 2018-03-25 | 1 | -1/+0 |
| | |||||
* | .pylintrc: Ensure pylint ignores gi.repository module as it dynamically adds ↵ | James Ennis | 2018-03-16 | 1 | -1/+1 |
| | | | | classes | ||||
* | pylint - dealt with whitespace issues and disabled pep8 warnings | James Ennis | 2018-03-14 | 1 | -2/+0 |
| | |||||
* | pylint - dealt with simplifiable-if-statement warning | James Ennis | 2018-03-14 | 1 | -2/+0 |
| | |||||
* | pylint - dealt with redefined-outer-name and redefined-built in warnings | James Ennis | 2018-03-14 | 1 | -4/+0 |
| | |||||
* | pylint - dealt with redefined-argument-from-local warning | James Ennis | 2018-03-14 | 1 | -1/+0 |
| | |||||
* | pylint - dealt with unnecessary-pass warning | James Ennis | 2018-03-14 | 1 | -1/+0 |
| | |||||
* | pylint - dealt with import warnings | James Ennis | 2018-03-14 | 1 | -4/+0 |
| | |||||
* | pylint - dealt with unidiomatic-typecheck warning | James Ennis | 2018-03-14 | 1 | -3/+0 |
| | |||||
* | pylint - dealt with superfluous-parens warning | James Ennis | 2018-03-14 | 1 | -3/+0 |
| | |||||
* | pylint - disabled no-member, bad-exception-context and ↵ | James Ennis | 2018-03-14 | 1 | -10/+3 |
| | | | | catching-non-exception warnings | ||||
* | pylint - dealt with len-as-condition warning | James Ennis | 2018-03-14 | 1 | -1/+0 |
| | |||||
* | pylint - dealt with global-statement warning | James Ennis | 2018-03-14 | 1 | -1/+0 |
| | |||||
* | pylint - dealt with dangerous-default-value warning | James Ennis | 2018-03-14 | 1 | -1/+0 |
| | |||||
* | pylint - dealt with consider-merging-isinstance warnings | James Ennis | 2018-03-14 | 1 | -1/+0 |
| | |||||
* | pylint - dealt with broad-except and bare-except warnings | James Ennis | 2018-03-14 | 1 | -2/+0 |
| | |||||
* | pylint - dealt with bad-continuation warning | James Ennis | 2018-03-14 | 1 | -1/+0 |
| | |||||
* | pylint - dealt with anomalous-backslash-in-string warning | James Ennis | 2018-03-14 | 1 | -1/+0 |
| | |||||
* | .pylintrc: Alterations to the configuration file | James Ennis | 2018-03-14 | 1 | -10/+5 |
| | |||||
* | .pylintrc: Amend which warning messages are disabled | James Ennis | 2018-03-14 | 1 | -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 Ennis | 2018-03-14 | 1 | -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. |