mirror of
https://github.com/PyCQA/flake8.git
synced 2026-04-12 07:44:16 +00:00
Merge branch 'spelling' into 'master'
Spelling fixes See merge request !119
This commit is contained in:
commit
a09c9acaaf
4 changed files with 4 additions and 4 deletions
|
|
@ -6,7 +6,7 @@ The command line interface of |Flake8| is modeled as an application via
|
||||||
command line, :func:`~flake8.main.cli.main` is run which handles
|
command line, :func:`~flake8.main.cli.main` is run which handles
|
||||||
management of the application.
|
management of the application.
|
||||||
|
|
||||||
User input is parsed *twice* to accomodate logging and verbosity options
|
User input is parsed *twice* to accommodate logging and verbosity options
|
||||||
passed by the user as early as possible.
|
passed by the user as early as possible.
|
||||||
This is so as much logging can be produced as possible.
|
This is so as much logging can be produced as possible.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ There are many ways to contriubte to |Flake8|, and we encourage them all:
|
||||||
|
|
||||||
- contributing bug reports and feature requests
|
- contributing bug reports and feature requests
|
||||||
|
|
||||||
- contributing documenation (and yes that includes this document)
|
- contributing documentation (and yes that includes this document)
|
||||||
|
|
||||||
- reviewing and triaging bugs and merge requests
|
- reviewing and triaging bugs and merge requests
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -166,7 +166,7 @@ Configuration file discovery is managed by the
|
||||||
:class:`~flake8.options.config.ConfigFileFinder` object. This object needs to
|
:class:`~flake8.options.config.ConfigFileFinder` object. This object needs to
|
||||||
know information about the program's name, any extra arguments passed to it,
|
know information about the program's name, any extra arguments passed to it,
|
||||||
and any configuration files that should be appended to the list of discovered
|
and any configuration files that should be appended to the list of discovered
|
||||||
files. It provides methods for finding the files and similiar methods for
|
files. It provides methods for finding the files and similar methods for
|
||||||
parsing those fles. For example, it provides
|
parsing those fles. For example, it provides
|
||||||
:meth:`~flake8.options.config.ConfigFileFinder.local_config_files` to find
|
:meth:`~flake8.options.config.ConfigFileFinder.local_config_files` to find
|
||||||
known local config files (and append the extra configuration files) and it
|
known local config files (and append the extra configuration files) and it
|
||||||
|
|
|
||||||
|
|
@ -180,7 +180,7 @@ class Report(object):
|
||||||
return self._application.result_count
|
return self._application.result_count
|
||||||
|
|
||||||
def get_statistics(self, violation):
|
def get_statistics(self, violation):
|
||||||
"""Get the list of occurences of a violation.
|
"""Get the list of occurrences of a violation.
|
||||||
|
|
||||||
:returns:
|
:returns:
|
||||||
List of occurrences of a violation formatted as:
|
List of occurrences of a violation formatted as:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue