mirror of
https://github.com/zulip/zulip.git
synced 2025-11-13 18:36:36 +00:00
Fixes #2665. Regenerated by tabbott with `lint --fix` after a rebase and change in parameters. Note from tabbott: In a few cases, this converts technical debt in the form of unsorted imports into different technical debt in the form of our largest files having very long, ugly import sequences at the start. I expect this change will increase pressure for us to split those files, which isn't a bad thing. Signed-off-by: Anders Kaseorg <anders@zulip.com>
29 lines
1.1 KiB
Python
29 lines
1.1 KiB
Python
import argparse
|
|
from typing import List
|
|
|
|
from zulint.linters import run_pyflakes
|
|
|
|
|
|
def check_pyflakes(files: List[str], options: argparse.Namespace) -> bool:
|
|
suppress_patterns = [
|
|
("scripts/lib/pythonrc.py", "imported but unused"),
|
|
# Intentionally imported by zerver/lib/webhooks/common.py
|
|
('', "'zerver.lib.exceptions.UnexpectedWebhookEventType' imported but unused"),
|
|
|
|
|
|
# Our ipython startup pythonrc file intentionally imports *
|
|
("scripts/lib/pythonrc.py",
|
|
" import *' used; unable to detect undefined names"),
|
|
|
|
("settings.py", "settings import *' used; unable to detect undefined names"),
|
|
("settings.py", "'from .prod_settings_template import *' used; unable to detect undefined names"),
|
|
("settings.py", "settings.*' imported but unused"),
|
|
("settings.py", "'.prod_settings_template.*' imported but unused"),
|
|
|
|
# Sphinx adds `tags` specially to the environment when running conf.py.
|
|
("docs/conf.py", "undefined name 'tags'"),
|
|
]
|
|
if options.full:
|
|
suppress_patterns = []
|
|
return run_pyflakes(files, options, suppress_patterns)
|