Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Move all package files to a pylint package. | Ionel Cristian Maries | 2015-02-14 | 1 | -964/+0 |
| | |||||
* | Change default max-line-length to 100 rather than 80 | Sylvain Th?nault | 2014-11-19 | 1 | -1/+1 |
| | |||||
* | pylint pylint | Sylvain Th?nault | 2014-11-19 | 1 | -11/+13 |
| | |||||
* | Move old-ne-operator to the python3 porting checker. | Claudiu Popa | 2014-11-15 | 1 | -11/+0 |
| | |||||
* | Move backtick warning in python3 porting checker. | Claudiu Popa | 2014-11-15 | 1 | -9/+0 |
| | |||||
* | 'too-many-lines' disable pragma can be located on any line, not only the first. | Claudiu Popa | 2014-10-23 | 1 | -2/+10 |
| | | | | Closes issue #321. | ||||
* | Drop old and useless code. | Claudiu Popa | 2014-10-21 | 1 | -3/+0 |
| | |||||
* | Add max_module_lines to warning message. Other length warnings already have ↵ | frost-nzcr4 frost-nzcr4 | 2014-09-15 | 1 | -2/+2 |
| | | | | this format. | ||||
* | Wrap dict.items() et. al. in list() | Brett Cannon | 2014-08-29 | 1 | -1/+2 |
| | |||||
* | Modernize to the point of working for Python 2.7 still | Brett Cannon | 2014-08-29 | 1 | -3/+6 |
| | |||||
* | Fixed tests for line endings checker. | Michal Nowikowski | 2014-07-26 | 1 | -1/+2 |
| | |||||
* | merge | Michal Nowikowski | 2014-07-26 | 1 | -20/+16 |
|\ | |||||
| * | Use the maxversion attribute on some warning instead of checking for the ↵ | Torsten Marek | 2014-07-25 | 1 | -21/+17 |
| | | | | | | | | Python version. | ||||
* | | Removed sign word from description of message. | Michal Nowikowski | 2014-07-26 | 1 | -1/+1 |
| | | |||||
* | | merge | Michal Nowikowski | 2014-07-25 | 1 | -45/+45 |
|\ \ | |/ | |||||
| * | linting pylint | Sylvain Th?nault | 2014-07-25 | 1 | -47/+47 |
| | | |||||
* | | Added two checkers for mixed line endings and for unexpected line endings. | Michal Nowikowski | 2014-07-25 | 1 | -3/+31 |
|/ | |||||
* | Allow implicitly concatenated strings to align with the previous string part. | Torsten Marek | 2014-07-25 | 1 | -15/+20 |
| | |||||
* | Use Module.future_imports for detecting if print is a builtin. | Torsten Marek | 2014-04-25 | 1 | -4/+2 |
| | |||||
* | Make the test suite pass on Python 2.6 again. | Torsten Marek | 2014-04-26 | 1 | -1/+1 |
| | |||||
* | Simplify the processing inside the main token loop, now that we have access ↵ | Torsten Marek | 2014-04-18 | 1 | -34/+30 |
| | | | | | | to the full token stream. Also fix a bug with misindented lines that start with a number not being reported properly. | ||||
* | Handle <> in the surface token dispatcher part. | Torsten Marek | 2014-04-18 | 1 | -6/+8 |
| | |||||
* | Add a check for indentation of continued lines, enforcing PEP8 style of ↵ | Torsten Marek | 2014-04-17 | 1 | -18/+344 |
| | | | | | | continued and hanging indents. | ||||
* | Only emit symbolic warnings from the format checker. | Torsten Marek | 2014-04-16 | 1 | -17/+17 |
| | |||||
* | Add missing operator == to list of comparison operators in format checker. | Torsten Marek | 2014-03-30 | 1 | -1/+1 |
| | |||||
* | Updated FSF address. | Arun Persaud | 2014-02-23 | 1 | -1/+1 |
| | |||||
* | various pylint fixes | Sylvain Th?nault | 2013-12-22 | 1 | -5/+3 |
| | |||||
* | [py3] various fixes for python3 | Sylvain Th?nault | 2013-12-20 | 1 | -1/+3 |
| | |||||
* | fix indentation in various places. Damned googlers :p | Sylvain Th?nault | 2013-12-04 | 1 | -85/+85 |
| | |||||
* | Combine 'no-space-after-operator', 'no-space-after-comma' and ↵ | Torsten Marek | 2013-11-06 | 1 | -88/+177 |
| | | | | | | | | | | | | 'no-space-before-operator' into 'bad-whitespace' Changes: - consistent whitespace (single space on either side) is enforced for assignment operators - some constructs are now configurable - whitespace after trailing comma - spacing around key/value separators in dicts - checks now happen on the token stream itself rather than evaluationg regular expressions against the raw code | ||||
* | Add a new warning 'superfluous-parens' for unnecessary parentheses | Torsten Marek | 2013-11-06 | 1 | -3/+108 |
| | | | | after certain keywords. | ||||
* | Added a new option to the multiple-statement-per-line warning to allow | Torsten Marek | 2013-11-05 | 1 | -7/+31 |
| | | | | | if statements with single-line bodies on the same line. The option is off by default. | ||||
* | Fix issue #55 (false-positive trailing-whitespace on Windows) | moxian | 2013-08-29 | 1 | -1/+1 |
| | |||||
* | some pylint and style fixes | Sylvain Th?nault | 2013-07-31 | 1 | -1/+1 |
| | |||||
* | Emit warnings about lines exceeding the column limit when those lines are ↵ | Torsten Marek | 2013-07-24 | 1 | -1/+12 |
| | | | | inside multiline docstrings. | ||||
* | add test for no-final-new-line | Sylvain Th?nault | 2013-07-17 | 1 | -1/+1 |
| | |||||
* | Added new warning no-final-newline. | Torsten Marek | 2013-06-22 | 1 | -6/+12 |
| | |||||
* | Add a warning for trailing whitespace. | Torsten Marek | 2013-06-18 | 1 | -2/+10 |
| | |||||
* | Extend the line length check. | Torsten Marek | 2013-06-17 | 1 | -2/+13 |
| | |||||
* | astng has been renamed astroid | David Douard | 2013-06-17 | 1 | -3/+3 |
| | |||||
* | Tokenize the input source only once and hand it to all checkers that need ↵ | Torsten Marek | 2013-05-01 | 1 | -17/+5 |
| | | | | | | | | | the token stream. A lot of checkers need access to the token stream, but they all tokenize the source code again in BaseRawChecker.process_module. This change introduces a new checker type ITokenChecker, for which the token stream is created exactly once in PyLinter, and then injected into all registered checkers. | ||||
* | Make sure that pragmas that apply to whole lines are interpreted literally, ↵ | Torsten Marek | 2013-03-29 | 1 | -5/+11 |
| | | | | | | | | | so that their scope is not extended to the whole scope if they occur at the beginning of a scope. Closes #123285 | ||||
* | move string literal checker from format.py to strings.py | Sylvain Th?nault | 2013-03-29 | 1 | -104/+1 |
| | |||||
* | string check: don't warn about octal escape sequence, warn about \o (not ↵ | Martin Pool | 2013-02-25 | 1 | -1/+4 |
| | | | | octal in python). Closes #111799 | ||||
* | lint fixes | Sylvain Th?nault | 2012-09-19 | 1 | -1/+1 |
| | |||||
* | Closes #104572: symbolic warning names in output (by Martin Pool) | Martin Pool | 2012-09-19 | 1 | -0/+14 |
| | | | | triggered whatever the format using a command line option | ||||
* | [format checker] check for anomalous backslash escape (new W1401, W1402). ↵ | Sylvain Th?nault | 2012-09-19 | 1 | -4/+102 |
| | | | | Closes #104571 | ||||
* | fix grammatical error for W0332 message. Closes #100654 | Sylvain Th?nault | 2012-08-29 | 1 | -2/+2 |
| | |||||
* | add note about soon useless stream.seek() | Sylvain Th?nault | 2011-10-26 | 1 | -1/+1 |
| | |||||
* | typo; fix py3k tests | Emile Anclin | 2010-12-16 | 1 | -1/+1 |
| |