Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Allow linting directories without `__init__.py` | Claudiu Popa | 2020-05-02 | 1 | -1/+1 |
| | | | | | This was a regressin in 2.5. Close #3528 | ||||
* | Allow package files to be properly discovered with multiple jobs | Claudiu Popa | 2020-05-02 | 1 | -4/+5 |
| | | | | Close #3524 | ||||
* | pyupgrade: automated removal of python2 constructs | Anthony Sottile | 2020-03-24 | 1 | -2/+0 |
| | | | | | | | | | | | | | using configuration: ```yaml - repo: https://github.com/asottile/pyupgrade rev: v2.1.0 hooks: - id: pyupgrade args: [--py3-plus, --keep-percent-format] exclude: ^tests/(extensions/data/|functional/|input/|regrtest_data/) ``` | ||||
* | Pass an additional search path to modutils.modpath_from_file and friends | Claudiu Popa | 2020-03-12 | 1 | -3/+14 |
| | |||||
* | Move _get_python_path in utils to be accessible by that file as well | Claudiu Popa | 2020-03-12 | 1 | -0/+14 |
| | |||||
* | Replace individual member imports with `os` in utils file | Claudiu Popa | 2020-03-12 | 1 | -18/+21 |
| | |||||
* | Removed duplicates of code, changed default to common default value | Mikhail Fesenko | 2019-10-03 | 1 | -4/+6 |
| | |||||
* | Remove redundant compatibility code (#3097) | Hugo van Kemenade | 2019-09-12 | 1 | -2/+0 |
| | | | | We no longer support Python 2 so we can remove the compatibility code we had in place for that version. | ||||
* | [pylint.utils] pylint.utils.category_id used only once | Pierre Sassoulas | 2019-08-06 | 1 | -8/+1 |
| | |||||
* | Refactor - Clearer function name ('rest' -> 'rst') in utils | Pierre Sassoulas | 2019-06-20 | 1 | -5/+5 |
| | | | | | I used the old name but there was probably a typo in it, as the format is called rst. | ||||
* | Refactor - Move utility function to utils | Pierre Sassoulas | 2019-06-20 | 1 | -0/+25 |
| | | | | We want to use them in Checker too. | ||||
* | Fix a bunch of linting errors from the codebase | Claudiu Popa | 2019-05-22 | 1 | -2/+2 |
| | |||||
* | Refactor - Remove unused and untested code in utils | Pierre Sassoulas | 2019-03-29 | 1 | -18/+0 |
| | | | | | There might be code that is used only in test but it's harder to detect. | ||||
* | Refactor - Move refactor.utils function to the utils package | Pierre Sassoulas | 2019-03-29 | 1 | -0/+18 |
| | | | | | | | This permit to have less cross dependency as the utils package does not depend on anything. The checker package still depends on reporter. Also moved classes from __init__ to their own file in reporter. | ||||
* | Refactor - Merge normalize text in utils.py | Pierre Sassoulas | 2019-03-29 | 1 | -1/+10 |
| | | | | Now that there is no more circular import we can do that. | ||||
* | Refactor - Avoid intra-packages circular dependencies for constants | Pierre Sassoulas | 2019-03-29 | 1 | -2/+1 |
| | | | | | | | | Some constants were package internal but were used by multiple packages. This created circular dependencies. By creating a file for constants we make sure this does not happen because we won't import everything important in this file and every thing else can depend on it. | ||||
* | Style - Apply isort on all apllicable files | Pierre Sassoulas | 2019-03-20 | 1 | -1/+2 |
| | |||||
* | Refactor - Rename _ini_format_section directly to format_section | Pierre Sassoulas | 2019-03-09 | 1 | -4/+1 |
| | |||||
* | Refactor - Create a pylint.message package | Pierre Sassoulas | 2019-03-09 | 1 | -29/+2 |
| | | | | | | | | There is a lot of Message related class in Utils this warrant the creation of a new package. See also review for burst utils.py into a package here: https://github.com/PyCQA/pylint/pull/2654#issuecomment-470748956 | ||||
* | Refactor - Move _rest_format_section in message_handler_mix_in.py | Pierre Sassoulas | 2019-03-09 | 1 | -19/+0 |
| | | | | Following review see : https://github.com/PyCQA/pylint/pull/2654#issuecomment-470748956 | ||||
* | Fix - C0412: Imports from package os are not grouped | Pierre Sassoulas | 2019-03-09 | 1 | -6/+5 |
| | |||||
* | Refactor - Create a file for each class in utils | Pierre Sassoulas | 2019-03-09 | 1 | -840/+12 |
| | |||||
* | Refactor - Create a file for the MessageStore class | Pierre Sassoulas | 2019-03-09 | 1 | -243/+0 |
| | |||||
* | Chore - Move content from __init__.py to utils.py | Pierre Sassoulas | 2019-03-09 | 1 | -0/+1467 |