mirror of
https://github.com/PyCQA/flake8.git
synced 2026-04-15 16:49:52 +00:00
Fix docs for --isolated flag
This commit is contained in:
parent
9631dac52a
commit
21531962bf
3 changed files with 3 additions and 3 deletions
|
|
@ -88,7 +88,7 @@ All options available as of Flake8 3.1.0::
|
||||||
--config=CONFIG Path to the config file that will be the authoritative
|
--config=CONFIG Path to the config file that will be the authoritative
|
||||||
config source. This will cause Flake8 to ignore all
|
config source. This will cause Flake8 to ignore all
|
||||||
other configuration files.
|
other configuration files.
|
||||||
--isolated Ignore all found configuration files.
|
--isolated Ignore all configuration files.
|
||||||
--benchmark Print benchmark information about this run of Flake8
|
--benchmark Print benchmark information about this run of Flake8
|
||||||
--bug-report Print information necessary when preparing a bug
|
--bug-report Print information necessary when preparing a bug
|
||||||
report
|
report
|
||||||
|
|
|
||||||
|
|
@ -138,7 +138,7 @@ And you should see something like:
|
||||||
--config=CONFIG Path to the config file that will be the authoritative
|
--config=CONFIG Path to the config file that will be the authoritative
|
||||||
config source. This will cause Flake8 to ignore all
|
config source. This will cause Flake8 to ignore all
|
||||||
other configuration files.
|
other configuration files.
|
||||||
--isolated Ignore all found configuration files.
|
--isolated Ignore all configuration files.
|
||||||
--builtins=BUILTINS define more built-ins, comma separated
|
--builtins=BUILTINS define more built-ins, comma separated
|
||||||
--doctests check syntax of the doctests
|
--doctests check syntax of the doctests
|
||||||
--include-in-doctest=INCLUDE_IN_DOCTEST
|
--include-in-doctest=INCLUDE_IN_DOCTEST
|
||||||
|
|
|
||||||
|
|
@ -207,7 +207,7 @@ def register_default_options(option_manager):
|
||||||
|
|
||||||
add_option(
|
add_option(
|
||||||
'--isolated', default=False, action='store_true',
|
'--isolated', default=False, action='store_true',
|
||||||
help='Ignore all found configuration files.',
|
help='Ignore all configuration files.',
|
||||||
)
|
)
|
||||||
|
|
||||||
# Benchmarking
|
# Benchmarking
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue