summaryrefslogtreecommitdiff
path: root/docs
Commit message (Collapse)AuthorAgeFilesLines
...
| * | Spelling and grammar fixesVille Skyttä2018-05-132-2/+2
| |/
* | Implement --extend-ignoreVille Skyttä2018-05-162-0/+37
|/ | | | Refs #365
* Merge branch 'readthedocs' into 'master'Ian Stapleton Cordasco2018-04-152-2/+2
|\ | | | | | | | | Prefer readthedocs.io instead of readthedocs.org for doc links See merge request pycqa/flake8!224
| * Prefer readthedocs.io instead of readthedocs.org for doc linksJon Dufresne2018-01-062-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Read the Docs moved hosting to readthedocs.io instead of readthedocs.org. Fix all links in the project. For additional details, see: https://blog.readthedocs.com/securing-subdomains/ > Starting today, Read the Docs will start hosting projects from subdomains on > the domain readthedocs.io, instead of on readthedocs.org. This change > addresses some security concerns around site cookies while hosting user > generated data on the same domain as our dashboard.
* | fixed emphasis on last lineTyler Wince2018-03-301-3/+3
| |
* | added language for entry point lengthTyler Wince2018-03-301-101/+7
| |
* | add common entry points and instruction to docsTyler Wince2018-03-291-0/+102
|/
* Merge branch 'local-plugin-paths' into 'master'Ian Stapleton Cordasco2017-11-261-0/+21
|\ | | | | | | | | | | | | Add paths option in local-plugins config file. Closes #379 See merge request pycqa/flake8!211
| * Use default comma-separated regex for local-plugin paths.Carl Meyer2017-10-251-1/+1
| |
| * Add paths option in local-plugins config file.Carl Meyer2017-10-241-0/+21
| |
* | Drop from __future__ import with_statement from docsJon Dufresne2017-11-261-1/+0
|/ | | | | | | All versions of Python that flake8 supports (2.7, 3.4+) have full support for the with statement. There is no need to add the import. Slightly simplifies the example be removing unnecessary boilerplate.
* Prepare for v3.5.0 release on 2017-10-233.5.0Ian Stapleton Cordasco2017-10-211-1/+9
|
* Document using local pluginsIan Stapleton Cordasco2017-08-121-0/+48
|
* Update release notes to include local pluginsIan Stapleton Cordasco2017-08-081-0/+12
|
* Add release note for VCS hook changeIan Stapleton Cordasco2017-08-071-0/+4
| | | | See also https://gitlab.com/pycqa/flake8/merge_requests/198
* Add missing release notes for 3.5.0Ian Stapleton Cordasco2017-08-061-0/+8
|
* Prepare master branch for development of 3.5.0Ian Stapleton Cordasco2017-08-062-0/+15
|
* Bump version to 3.4.1 and add release notesIan Stapleton Cordasco2017-07-282-0/+18
|
* Release v3.4.03.4.0Ian Stapleton Cordasco2017-07-271-1/+15
|
* Update name across the project post-marriageIan Stapleton Cordasco2017-07-272-5/+5
|
* Update internal documentation around StyleGuideIan Cordasco2017-06-041-2/+3
|
* Add way to get back to options indexIan Cordasco2017-05-291-0/+143
|
* Start writing new documentation around --selectIan Cordasco2017-05-294-91/+293
| | | | | In order to write this documentation, we need to also add documentation for the --max-complexity option which was heretofore undocumented.
* Add release note for bug 318Ian Cordasco2017-05-271-0/+5
|
* Add release note for bug 329Ian Cordasco2017-05-251-0/+5
|
* Add release notes for bug 330Ian Cordasco2017-05-252-0/+18
|
* Note about error behaviour depending on Python version, e.g. F812Peter Cock2017-04-261-0/+3
|
* Update and finalize v3.3.0 release notesIan Cordasco2017-02-061-8/+22
|
* Add test for reproducible --version stringsIan Cordasco2017-01-211-1/+10
| | | | And add a release note to document the change.
* Correct "systema" typo in usage documentation.Andrew Drake2017-01-171-1/+1
|
* Add AST support for Python 3.6Ian Cordasco2017-01-151-0/+4
| | | | | | | Upgrade version constraints on PyFlakes to only the versions that handle Python 3.6 Closes #290
* Add documentation for our code styleIan Cordasco2016-12-233-0/+223
|
* Display the local paths from the git hookIan Cordasco2016-12-201-0/+5
| | | | | | | | Instead of displaying the path to the temporary directory, as we always have, it's been requested that we instead display the path to the file that was copied to the temporary directory. Closes #244
* Enable users who want to track all files processedIan Cordasco2016-12-201-0/+5
| | | | | | | | | | | This adds two new methods to the BaseFormatter class: - beginning - finished These will indicate when Flake8 begins and finishes processing a file. Closes #251
* Tidy up last few bits for performance improvementIan Cordasco2016-12-201-0/+4
|
* Assign missing codes to PyFlakes messagesLukasz Langa2016-11-282-1/+36
| | | | | | | | Some PyFlakes messages weren't covered by unique messages, making them impossible to select/ignore. This is now fixed. To ensure we don't regress in the future, a test has been added that fails if there's any uncovered messages.
* Only force files to be included when run from CLIIan Cordasco2016-11-231-0/+4
| | | | | | | | | | | | | Previously we added support so users can do: $ flake8 bin/executable But this broke the fact that git hooks shouldn't check things like reStructuredText doc files. This commit restores that functionality but will cause bin/executable to be ignored in the git hook. This seems fair since folks can amend their filename patterns to include it explicitly. Closes #268
* Prepare for 3.3.0 developmentIan Cordasco2016-11-212-0/+10
|
* Update release notes and version string for 3.2.13.2.1Ian Cordasco2016-11-191-1/+15
|
* Fix some typos in release notesAdam Chainz2016-11-171-2/+2
|
* Grammar nittim smith2016-11-161-1/+1
|
* Fix subtle reporting bug for default on pluginsIan Cordasco2016-11-151-0/+5
| | | | | | | | | | | When we refactored our decision process to fix #239, we broke a subtle corner case where extensions that are not off-by-default are to be reported. This further refactors that logic and adds specific tests around it to ensure it works as expected and doesn't regress. Closes #257
* Prepare for 3.2.1 developmentIan Cordasco2016-11-152-0/+9
|
* Fix version string in release notesIan Cordasco2016-11-141-1/+1
|
* Release 3.2.03.2.0Ian Cordasco2016-11-142-0/+14
|
* Fix documentation issues in 3.1.1Ian Cordasco2016-11-142-1/+2
|
* Add release notes for 3.1.13.1.1Ian Cordasco2016-11-141-0/+18
| | | | Bump the version string as well
* Merge branch 'refactor-release-notes' into 'master' 3.1.0b2Ian Cordasco2016-11-131-0/+18
|\ | | | | | | | | | | | | | | | | | | | | | | | | Create sub-sections for different release series When looking at the documentation, the release notes section on the sidebar was incredibly long, due to the number of releases available. To make this more usable, I've split the release notes index into sections for each release series (e.g., 3.x, 2.x, etc.). This allows documentation users to open the release notes sidebar section, and then select which series they want. That will expand and let them pick the version. See merge request !145
| * Create sub-sections for different release seriesIan Cordasco2016-11-131-0/+18
| | | | | | | | | | | | | | | | | | | | When looking at the documentation, the release notes section on the sidebar was incredibly long, due to the number of releases available. To make this more usable, I've split the release notes index into sections for each release series (e.g., 3.x, 2.x, etc.). This allows documentation users to open the release notes sidebar section, and then select which series they want. That will expand and let them pick the version.
* | Add a man page for Flake8Ian Cordasco2016-11-133-1/+152
|/ | | | | | | Document Flake8 for users expecting `man flake8` to work and include the man page in Flake8's documentation. Closes #247