| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Implement confidence levels. | Torsten Marek | 2014-07-24 | 1 | -69/+0 |
| | | | | | | | | - attach confidence levels to a number of messages - include confidence levels in the message object - if the confidence of a message is not HIGH or UNDEFINED, include it in the test output. | ||||
| * | Fix test failures. | cpopa | 2014-08-17 | 2 | -2/+2 |
| | | |||||
| * | Detect calls of the parent's __init__, through a binded super() call. | cpopa | 2014-08-16 | 1 | -0/+14 |
| | | |||||
| * | Don't emit 'protected-access' if the attribute is accessed using a property ↵ | cpopa | 2014-08-14 | 1 | -0/+1 |
| | | | | | defined at the class level. | ||||
| * | Look in the metaclass, if defined, for members not found in the current ↵ | cpopa | 2014-08-14 | 1 | -32/+0 |
| | | | | | class. Closes issue #306. | ||||
| * | fixme regex handles comments without spaces after the hash. Closes issue #311. | cpopa | 2014-08-11 | 1 | -0/+1 |
| | | |||||
| * | Don't emit 'import-error' if an import was protected by a try-except, which ↵ | cpopa | 2014-08-08 | 1 | -4/+0 |
| | | | | | excepted ImportError. | ||||
| * | Don't emit 'attribute-defined-outside-init' if the attribute was set by a ↵ | cpopa | 2014-08-04 | 1 | -1/+33 |
| | | | | | function call in a defining method. Closes issue #192. | ||||
| * | Merged logilab/pylint into default | Claudiu Popa | 2014-07-31 | 5 | -148/+0 |
| |\ | |||||
| | * | Converted more test cases. | Torsten Marek | 2014-07-30 | 5 | -148/+0 |
| | | | |||||
| * | | Handle 'too-few-format-args' or 'too-many-format-args' for format strings ↵ | cpopa | 2014-07-31 | 1 | -88/+0 |
| |/ | | | | with both named and positional fields. Closes issue #286. | ||||
| * | Remove old testcase that has already been converted. | Torsten Marek | 2014-07-30 | 1 | -56/+0 |
| | | |||||
| * | Converted and merge test cases. | Torsten Marek | 2014-07-30 | 3 | -144/+0 |
| | | |||||
| * | Remove testcases only for Python < 2.7. | Torsten Marek | 2014-07-30 | 1 | -102/+0 |
| | | |||||
| * | Fix mixed line endings in 3.4-specific test case. | Torsten Marek | 2014-07-30 | 1 | -10/+10 |
| | | |||||
| * | Merged in godfryd/pylint/line-ending-checks (pull request #133) | Torsten Marek | 2014-07-30 | 4 | -125/+124 |
| |\ | |||||
| | * | merge | Michal Nowikowski | 2014-07-30 | 4 | -125/+124 |
| | |\ | |||||
| | | * | Merged default into line-ending-checks | Michal Nowikowski | 2014-07-29 | 4 | -125/+124 |
| | | |\ | |||||
| | | | * | Fixed tests for line endings checks. | Michal Nowikowski | 2014-07-28 | 1 | -33/+33 |
| | | | | | |||||
| | | | * | merge | Michal Nowikowski | 2014-07-28 | 13 | -435/+0 |
| | | | |\ | |||||
| | | | * | | Fixed tests for line endings checker. | Michal Nowikowski | 2014-07-26 | 3 | -92/+91 |
| | | | | | | |||||
| * | | | | | Merged in carlio/pylint (pull request #138) | Claudiu Popa | 2014-07-30 | 1 | -0/+25 |
| |\ \ \ \ \ | |/ / / / |/| | | | | | | | | | Don't evaluate dangerous-default-value argument values | ||||
| | * | | | | Merged logilab/pylint into default | carlio | 2014-07-29 | 1 | -0/+25 |
| | |\ \ \ \ | | |/ / / | |/| | | | |||||
| | | * | | | [refs #282] dangerous-default-values are now not evaluated to get their ↵ | carl | 2014-07-27 | 1 | -0/+25 |
| | | |/ / | | | | | | | | | | | | | type/name, as this would dump the entire contents of the list or dictionary into the error message. This is not desirable for large defaults, or for sensitive information such as os.environ. | ||||
| * | | | | More test cases moved to the new test framework. | Torsten Marek | 2014-07-27 | 5 | -79/+0 |
| | | | | | |||||
| * | | | | Proper handle class level scope for lambdas. | cpopa | 2014-07-29 | 1 | -15/+0 |
| | | | | | |||||
| * | | | | Fix a false positive with string formatting checker, when using keyword ↵ | cpopa | 2014-07-29 | 1 | -0/+8 |
| |/ / / | | | | | | | | | | argument packing. Closes issue #288. | ||||
| * | | | Fix a false positive with string formatting checker, when encountering a ↵ | cpopa | 2014-07-29 | 1 | -0/+2 |
| | |/ |/| | | | | | string which uses only position-based arguments. Closes issue #285. | ||||
| * | | Converted more test cases to the new test framework. | Torsten Marek | 2014-07-26 | 13 | -435/+0 |
| |/ | |||||
| * | Don't emit 'missing-docstring' when the actual docstring uses `.format`. ↵ | cpopa | 2014-07-25 | 1 | -73/+0 |
| | | | | | Closes issue #281. | ||||
| * | Port more testcases to the new framework. | Torsten Marek | 2014-07-25 | 4 | -357/+0 |
| | | |||||
| * | Don't emit 'unnecessary-lambda' if the body of the lambda call contains call ↵ | cpopa | 2014-07-25 | 1 | -40/+0 |
| | | | | | chaining. Closes issue #243. | ||||
| * | Porting tests over to the new framework. | Torsten Marek | 2014-07-25 | 4 | -272/+0 |
| | | |||||
| * | Don't emit hidden-method message when the attribute has been monkey-patched, | Sylvain Th?nault | 2014-07-25 | 1 | -17/+0 |
| | | | | | | | you're on your own when you do that Closes http://www.logilab.org/ticket/36653 | ||||
| * | Extend the test case for metaclass invocation detection. | Torsten Marek | 2014-07-25 | 1 | -2/+2 |
| | | |||||
| * | Make pylint compatible with Python 2.5 again, and make all the tests pass ↵ | Torsten Marek | 2014-07-24 | 9 | -224/+8 |
| | | | | | (Closes: #278). | ||||
| * | Allow implicitly concatenated strings to align with the previous string part. | Torsten Marek | 2014-07-25 | 1 | -0/+4 |
| | | |||||
| * | Fix more edge cases in the cell-var-from-loop warning (Closes: #233). | Torsten Marek | 2014-07-25 | 1 | -0/+18 |
| | | |||||
| * | Added a new test suite for functional tests. | Torsten Marek | 2014-07-24 | 4 | -40/+0 |
| | | | | | | | Main changes: - version restrictions are not encoded in file names any more, but in option files - expected messages are annotated in the test files directly | ||||
| * | Add a test case for #205. | Torsten Marek | 2014-07-24 | 1 | -0/+11 |
| | | |||||
| * | Don't emit 'pointless-string-statement' for attribute docstrings. Closes ↵ | cpopa | 2014-07-24 | 1 | -1/+31 |
| | | | | | issue #193. | ||||
| * | Merged in PCManticore/pylint/metaclass_undefined (pull request #111) | Claudiu Popa | 2014-07-23 | 1 | -0/+14 |
| |\ | | | | | | | Emit 'undefined-variable' for undefined names used as metaclasses with Python 3 `metaclass=` syntax. | ||||
| | * | Don't emit 'unused-variable' when assigning to a nonlocal. Closes issue #275. | cpopa | 2014-07-23 | 1 | -0/+14 |
| | | | |||||
| * | | Merge with default. | cpopa | 2014-07-22 | 19 | -11/+565 |
| |\ \ | |/ | |||||
| | * | Definition order is considered for classes, function arguments and ↵ | cpopa | 2014-07-21 | 2 | -2/+56 |
| | | | | | | | | | annotations. Closes issue #257. | ||||
| | * | Fix an 'unused-variable' false positive, where the variable is assigned ↵ | cpopa | 2014-07-17 | 1 | -1/+17 |
| | | | | | | | | | through an import. Closes issue #196. | ||||
| | * | Fix test for Python 2. | cpopa | 2014-07-10 | 1 | -1/+1 |
| | | | |||||
| | * | Add 'assigning-non-slot' warning, which detects assignments to attributes ↵ | cpopa | 2014-07-10 | 1 | -0/+56 |
| | | | | | | | | | not defined in slots. | ||||
| | * | Fix a false positive regarding W0511. Closes issue #149. | Alexandru Coman | 2014-07-09 | 1 | -0/+3 |
| | | | |||||
| | * | Fixing Issue #149 (W0511 false positive) | Alexandru Coman | 2014-07-09 | 1 | -2/+4 |
| | | | |||||
