summaryrefslogtreecommitdiff
path: root/README.md
Commit message (Collapse)AuthorAgeFilesLines
* Fix typo in READMEStefanie Molin2023-03-211-2/+2
|
* Cleanup deprecated extrasstaticdev2023-02-091-18/+0
|
* Update docsstaticdev2022-12-301-1/+1
|
* Remove Python 3.6barrelful2022-12-111-1/+1
|
* Fix links to documentationArthur Rio2021-06-161-8/+8
|
* Fix typo: compatiblity -> compatibilityYusuke Hayashi2021-05-221-1/+1
|
* develop -> mainTimothy Crosley2021-03-241-3/+3
|
* Add clarifying note on globstar to README.mdDavid Poznik2021-02-161-6/+9
|
* fix typo on READMEhirosassa2021-02-131-1/+1
|
* Move setuptools integration to dedicated documentation pageTimothy Crosley2021-02-101-24/+2
|
* Move add or remove imports to dedicated documentation pageTimothy Crosley2021-02-101-26/+3
|
* Move githook documentation to dedicated pageTimothy Crosley2021-02-101-29/+1
|
* Move custom sections and ordering to a dedicated documentation pageTimothy Crosley2021-02-101-125/+3
|
* Move multi line output documentation to a dedicated documentation pageTimothy Crosley2021-02-081-118/+1
|
* Respect line_length in vertical grid modes and deprecate mode 6gofr2021-02-051-13/+2
| | | | | | | | | | | | | | | | | | | In the three vertical grid multi line modes (4, 5 and 6), each mode had a bug where the line length would be overcounted or undercounted by one character when used in combination with an unexpected value for the include_trailing_comma setting. This could cause import lines to exceed the line_length or be wrapped at one less than the specified line_length. Count the trailing characters correctly. This also deprecates mode 6, since the only difference between this mode and mode 5 is in how it handles include_trailing_comma. The distinction is no longer relevant, since mode 5 can now handle both possible values of include_trailing_comma. For backwards compatibility, make mode 6 an alias for mode 5.
* Add link to pre-commit-docsissue/1639Timothy Crosley2021-01-301-0/+1
|
* Improve formattingTimothy Crosley2020-12-021-2/+2
|
* Add link to isort black compatibility guide to main readmeTimothy Crosley2020-12-021-0/+1
|
* Improve docs around custom section orderingjaydesl2020-10-251-1/+1
|
* Fixes syntax highlight in README.mdNikita Sobolev2020-09-301-2/+2
|
* Fix typo in README.mdHasan Ramezani2020-09-251-3/+3
|
* Remove code climate link; Resolve #1449Timothy Crosley2020-09-081-1/+0
|
* Fix deep source link #1449Timothy Crosley2020-09-071-1/+1
|
* Resovle #1434 add backslash-grid modeTimothy Crosley2020-09-011-2/+13
|
* Switch back broken Deepsource and Gitter linksupdate-timothycrosley-references-to-pycqaTamas Szabo2020-08-251-2/+2
|
* Update timothycrosley references to pycqaTamas Szabo2020-08-251-17/+17
|
* Extends git_hook to allow for a user-specified configuration file.Luca Di Sera2020-08-221-1/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The behavior of the `git_hook` function was to search for a configuration file by starting from the directory containing the first staged file and moving upwards until a configuration file was found or a certain number of directories were checked. If the project configuration file is not stored in a directory that is a parent to each python file in the codebase, the `git_hook` function was unable to retrieve the file. For example, this might happen with a configuration such as the following: ``` git-root/ config/ .isort.cfg src/ ... ``` To allow for the `git_hook` function to support those project structures without breaking backwards compatibility, an optional argument, `settings_file`, was added to it. When `settings_file` is the empty string the function behaves as before. Otherwise, `settings_file` is considered a path to a valid configuration file that will be used for the hook's run. A test in `tests/test_hooks.py` was added to cover for this case. `README.md#Git hook` was modified to mention the new interface.
* Complete documentation for multi line modes.Tamas Szabo2020-08-111-0/+34
|
* Resolve #1368: Add extra_standard_library to the READMETimothy Crosley2020-08-031-0/+1
|
* Fix readme to show side sections as clickable linksTimothy Crosley2020-07-251-34/+17
|
* Resolve #1347: Improve description and documentation for ↵Timothy Crosley2020-07-251-22/+30
| | | | force_sort_within_sections
* Adds lazy option to git hook.Tamas Szabo2020-07-251-1/+6
| | | | Fixes #1214
* Fix small grammer errorTimothy Crosley2020-07-231-1/+1
|
* Add badge referenceTimothy Crosley2020-07-231-0/+20
|
* Put isort label next to black labelTimothy Crosley2020-07-231-1/+1
|
* Improved badgeTimothy Crosley2020-07-231-1/+1
|
* Move isort badge to far right sideTimothy Crosley2020-07-231-1/+1
|
* Add code style badgesTimothy Crosley2020-07-231-0/+2
|
* Resolves #1332: Additional documentation on discrepency between known_x and ↵Timothy Crosley2020-07-201-0/+13
| | | | sections=X
* Remove some no longer accurate documentation sectionsTimothy Crosley2020-07-061-86/+0
|
* Fix documentation with missing dot '.'John L. Villalovos2020-07-051-1/+1
| | | | | | Commit 11e2a74f5d379a68edaa064a0aeb70d8bcad9491 changed the line to remove the '-rc' flag but seems to have accidentally removed the dot character at the same time.
* Update optional feature names in READMETaneli Hukkinen2020-07-051-3/+3
|
* Remove references to removed isort[pyproject] extra in READMETaneli Hukkinen2020-07-041-8/+1
|
* Fix badge linkTimothy Crosley2020-07-041-1/+1
|
* Start quick start guideTimothy Crosley2020-07-011-1/+1
|
* Fix linksTimothy Crosley2020-06-261-1/+1
|
* Add interactive isortTimothy Crosley2020-06-261-13/+13
|
* Merge pull request #1202 from bsolomon1124/doc-pyprojectTimothy Edmund Crosley2020-05-191-1/+8
|\ | | | | Docs: mention isort[pyproject] extra in README
| * Docs: mention isort[pyproject] extra in READMEBrad Solomon2020-05-141-1/+8
| |
* | Officially move from travis to github actionsTimothy Crosley2020-05-191-1/+2
| |