-
Notifications
You must be signed in to change notification settings - Fork 47
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Make it compatible with latest flake8 #96
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
from io import BytesIO, TextIOWrapper | ||
|
||
from flake8.main import application | ||
from flake8.options import config | ||
from flake8.options.parse_args import parse_args | ||
|
||
import pytest | ||
|
||
|
@@ -213,21 +213,12 @@ def check_file(path, flake8ignore, maxlength, maxdoclenght, maxcomplexity, | |
if statistics: | ||
args += ['--statistics'] | ||
app = application.Application() | ||
prelim_opts, remaining_args = app.parse_preliminary_options(args) | ||
config_finder = config.ConfigFileFinder( | ||
app.program, | ||
prelim_opts.append_config, | ||
config_file=prelim_opts.config, | ||
ignore_config_files=prelim_opts.isolated, | ||
) | ||
app.find_plugins(config_finder) | ||
app.register_plugin_options() | ||
app.parse_configuration_and_cli(config_finder, remaining_args) | ||
app.plugins, app.options = parse_args(args) | ||
if flake8ignore: | ||
app.options.ignore = flake8ignore | ||
app.make_formatter() # fix this | ||
app.make_guide() | ||
app.make_file_checker_manager() | ||
app.make_file_checker_manager([]) | ||
app.run_checks([str(path)]) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Hello, correct me if I'm wrong because I'm not an expert. I am wondering how you know that There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Oops I might have a wrong setup will retry |
||
app.formatter.start() | ||
app.report_errors() | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In #88 the code is kept 🤔 but from the commit where they change they remove it.