summaryrefslogtreecommitdiff
path: root/pylint
Commit message (Expand)AuthorAgeFilesLines
* Prepare a bug fix releasepylint-2.1.1Claudiu Popa2018-08-061-1/+1
* fix pylint crash due to misplaced-format-functionssolanki2018-08-063-2/+25
* Prepare 2.1Claudiu Popa2018-08-011-1/+1
* Make generated rst section names uniqueBryce Guinta2018-08-011-7/+8
* Fix rst italics of generated pylint helpBryce Guinta2018-08-011-1/+2
* Add new check misplaced-format-function. (#2218)Sushobhit2018-07-313-1/+66
* consider bare except also for try-except-raise (#2353)Sushobhit2018-07-313-3/+48
* Improve the help message for logging-fstring-interpolation. Close #2354Claudiu Popa2018-07-311-3/+1
* `trailing-comma-tuple` gets emitted for ``yield`` statements as well.Claudiu Popa2018-07-313-1/+8
* Get only the arguments of the scope function for `redefined-argument-from-local`Claudiu Popa2018-07-312-1/+8
* Explain what property-classes is for. Close #2365Claudiu Popa2018-07-311-1/+2
* Suppress undefined-variable for self referential class in lamdbas (#2362)Bryce Guinta2018-07-314-1/+71
* Change refactoring nodes_of_class call to use skip_klass (#2351)Nick Drozd2018-07-271-4/+2
* Simplify fixme regexVille Skyttä2018-07-262-12/+3
* `chain.from_iterable` no longer emits `dict-{}-not-iterating` when dealing wi...Claudiu Popa2018-07-242-1/+7
* Can specify a default docstring type for when the check cannot guess the type...Ashley Whetter2018-07-242-7/+37
* Fix not being able to disable certain messages on the last line (#2342)Bryce Guinta2018-07-242-1/+33
* Don't check against collections for no-member because it now has a module lev...Claudiu Popa2018-07-232-2/+1
* Add a transform for the metaclasses that should be consumedClaudiu Popa2018-07-231-0/+7
* Disable pylint error for long functionClaudiu Popa2018-07-231-0/+1
* Modules with `__getattr__` are exempted by default from `no-member`Claudiu Popa2018-07-234-0/+11
* Add column offset to fixmes (#2319)Ville Skyttä2018-07-231-1/+2
* Demote 'try-except-raise' from an error to a warning (#2324)Carey Metcalfe2018-07-221-6/+6
* Actually async for in list comprehension wasn't added in 3.5, so move this te...Claudiu Popa2018-07-193-1/+1
* Remove the yield from async function to make Py35 happyClaudiu Popa2018-07-191-2/+1
* Don't emit `not-an-iterable` when dealing with async iterators.Claudiu Popa2018-07-195-5/+38
* Don't crash when `pylint` is unable to infer the value of an argument to `nex...Claudiu Popa2018-07-193-1/+11
* Simplify the code a little bitClaudiu Popa2018-07-191-4/+1
* `try-except-raise` should consider parent class handlers.ssolanki2018-07-194-8/+73
* Fix format checker inconsistency for start of first line (#2312)Bryce Guinta2018-07-192-1/+15
* Don't emit `useless-return` when we have a single statement that is the retur...Claudiu Popa2018-07-172-2/+5
* Include the type of the next branch in `no-else-return`Claudiu Popa2018-07-172-4/+8
* Drop the parens from the sum() call as they are not neededClaudiu Popa2018-07-171-2/+2
* Remove the maximum length from the style regular expressions (#2290)SergeyKosarchuk2018-07-175-15/+10
* Remove the dev prefixpylint-2.0Claudiu Popa2018-07-151-1/+1
* Update copyright noticesClaudiu Popa2018-07-1590-101/+300
* Validate that the next() builtin is called when looking for stop-iteration-re...Claudiu Popa2018-07-152-0/+15
* Prevent an InferenceError raised when inferring a property that raises an exc...Claudiu Popa2018-07-152-3/+14
* Ignore the test directory from CPython as that might have invalid filesClaudiu Popa2018-07-151-1/+1
* Prepare the releaseClaudiu Popa2018-07-151-2/+1
* Control the maximum number of inference values from pylint with --limit-infer...Claudiu Popa2018-07-151-0/+7
* Fix incorrect hanging indent detection for with statementsBryce Guinta2018-07-152-3/+14
* Add docstring to _hanging_indent_after_bracketBryce Guinta2018-07-151-1/+10
* Rename pos to position to keep naming consistentBryce Guinta2018-07-151-6/+6
* Fix lint errorBryce Guinta2018-07-131-0/+2
* Disable false-positive test message from changes in astroidBryce Guinta2018-07-132-1/+2
* Do not try to lower checker name if not setBryce Guinta2018-07-131-1/+2
* Return early when possible in typecheck call visitorNick Drozd2018-07-131-19/+21
* Avoid ancestors call in ABC check if possibleNick Drozd2018-07-131-3/+10
* Return early to avoid some nodes_of_class callsNick Drozd2018-07-131-0/+7