Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Bump pylint max-module-lines | Jack Lloyd | 2017-05-19 | 1 | -1/+1 |
| | |||||
* | Let modules specify minimum compiler version, add runtime compiler version check | Jack Lloyd | 2017-05-18 | 1 | -1/+1 |
| | | | | | | | | | | | | | This comes up recently to support CPU extensions by Intel (#826) and ARM (#844) since the intrinsic functions were only added in compiler versions more recent than the minimums we generally support, but might actually be useful for all kinds of things in the future since one can add a (new, otherwise optional) C++14 or C++17 module in 2.x branch while continuing to support the current set of supported compiler versions for the main library functionality. Uses RDSEED as the test case, to ensure version detection/comparisons work on all platforms. | ||||
* | ignore new pylint rule: no-else-return | Simon Warta | 2017-04-26 | 1 | -1/+2 |
| | |||||
* | Convert gen_cmake() into class | Simon Warta | 2017-04-07 | 1 | -2/+2 |
| | |||||
* | Fix some styling issues on cmake code | Simon Warta | 2017-04-04 | 1 | -4/+4 |
| | |||||
* | pylint: use LexResult to store result of lexer | Simon Warta | 2017-03-08 | 1 | -1/+1 |
| | |||||
* | pylint: use lex return value in ModuleInfo | Simon Warta | 2017-03-08 | 1 | -2/+2 |
| | |||||
* | pylint: make some limits less strict | Simon Warta | 2017-03-08 | 1 | -3/+3 |
| | |||||
* | Add .pylintrc | Simon Warta | 2017-01-09 | 1 | -0/+380 |
Default generated .pylintrc from pylint 1.5.2 (Python 3.5.2) with the following modification: - turn off full reports (reports=no) - disable rule "missing-docstring" - disable rule "logging-not-lazy" (we don't care for speed) - set line length limit to 120 - set line limit per module to 3000 - allow short variable names |