aboutsummaryrefslogtreecommitdiffstats
path: root/.pylintrc
Commit message (Collapse)AuthorAgeFilesLines
* Bump pylint max-module-linesJack Lloyd2017-05-191-1/+1
|
* Let modules specify minimum compiler version, add runtime compiler version checkJack Lloyd2017-05-181-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-returnSimon Warta2017-04-261-1/+2
|
* Convert gen_cmake() into classSimon Warta2017-04-071-2/+2
|
* Fix some styling issues on cmake codeSimon Warta2017-04-041-4/+4
|
* pylint: use LexResult to store result of lexerSimon Warta2017-03-081-1/+1
|
* pylint: use lex return value in ModuleInfoSimon Warta2017-03-081-2/+2
|
* pylint: make some limits less strictSimon Warta2017-03-081-3/+3
|
* Add .pylintrcSimon Warta2017-01-091-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