summaryrefslogtreecommitdiff
path: root/README.md
Commit message (Collapse)AuthorAgeFilesLines
* 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
| |
* | Rearrange badgesTimothy Crosley2020-05-171-1/+1
| |
* | Add maintainability badgeTimothy Crosley2020-05-171-0/+1
| |
* | Minor README fixesTimothy Crosley2020-05-171-1/+2
| |
* | Minor README fixesTimothy Crosley2020-05-171-36/+4
| |
* | Add deep source badgeTimothy Crosley2020-05-161-0/+1
|/
* Fix config file nameharupy2020-02-151-1/+1
|
* Fix build badge to point at developTimothy Crosley2020-02-151-1/+1
|
* Fix tagline in image captionTimothy Crosley2020-02-141-1/+1
|
* Update tagline to read more smoothlyTimothy Crosley2020-02-141-1/+1
|
* issue-1125 remove documentation examples of two character flagsJeremy Paige2020-02-101-3/+3
|
* Improve documentation in regards to issue #698Timothy Crosley2020-01-051-1/+1
|
* Fix example to match new behaviourTimothy Crosley2019-12-241-2/+1
|
* Fix readme renderingTimothy Crosley2019-11-101-1/+2
|
* Add new logoTimothy Crosley2019-11-101-2/+2
|
* Bump required version to 3.6 in readmeTimothy Crosley2019-10-241-1/+1
|
* Add portray documentationTimothy Crosley2019-10-131-0/+4
|
* Switch to portray compatible doc setup / MD usage exclusivelyTimothy Crosley2019-10-121-0/+698
|
* Convert README to rstAdam Chainz2015-08-211-487/+0
|
* Fix README to note 3.5 supportTimothy Crosley2015-07-121-1/+1
|
* Custom section ordering and support.Derrick Petzold2015-05-311-0/+21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Users can now define their own sections and ordering. For example import_heading_stdlib = Standard Library import_heading_thirdparty = Third Party import_heading_firstparty = First Party import_heading_django = Django import_heading_pandas = Pandas known_django = django known_pandas = pandas,numpy known_first_party = p24,p24.imports._VERSION sections = FUTURE,STDLIB,DJANGO,THIRDPARTY,PANDAS,FIRSTPARTY,LOCALFOLDER would create two new sections with the specified known modules. # Standard Library import os import p24.imports._argparse as argparse import p24.imports._subprocess as subprocess import sys # Django from django.conf import settings from django.db import models # Third Party from bottle import Bottle, redirect, response, run # Pandas import numpy as np import pandas as pd # First Party import p24.imports._VERSION as VERSION import p24.shared.media_wiki_syntax as syntax
* Add Setuptools integration issue #261Benjamin ABEL2015-03-021-2/+30
| | | | | | | | | | These changes enable any user that installs `isort` to check his source code from setup.py with the command `python setup.py isort` I also checked isort package code with his command in tox and travis. Acknowledgements: this is mostly inspired by flake8 setuptools integration, see [flake8 doc](http://flake8.readthedocs.org/en/2.2.3/setuptools.html)
* Merge pull request #232 from timgraham/221Timothy Edmund Crosley2015-02-041-0/+4
|\ | | | | Fix #221 -- Add include_trailing_comma setting.
| * Fix #221 -- Add include_trailing_comma setting.Tim Graham2015-02-031-0/+4
| |
* | Another attempt at fixing the readmeTimothy Crosley2015-02-041-2/+3
| |
* | Attempt twoTimothy Crosley2015-02-041-0/+1
| |
* | Small change to readmeTimothy Crosley2015-02-041-1/+5
|/