Current Path: > > opt > cloudlinux > venv > lib64 > python3.11 > site-packages > > flake8
Operation : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 Software : Apache Server IP : 162.0.232.56 | Your IP: 216.73.216.111 Domains : 1034 Domain(s) Permission : [ 0755 ]
Name | Type | Size | Last Modified | Actions |
---|---|---|---|---|
__pycache__ | Directory | - | - | |
api | Directory | - | - | |
formatting | Directory | - | - | |
main | Directory | - | - | |
options | Directory | - | - | |
plugins | Directory | - | - | |
__init__.py | File | 1962 bytes | April 17 2025 13:10:59. | |
__main__.py | File | 142 bytes | April 17 2025 13:10:59. | |
_compat.py | File | 518 bytes | April 17 2025 13:10:59. | |
checker.py | File | 24019 bytes | April 17 2025 13:10:59. | |
defaults.py | File | 1105 bytes | April 17 2025 13:10:59. | |
discover_files.py | File | 2912 bytes | April 17 2025 13:10:59. | |
exceptions.py | File | 2358 bytes | April 17 2025 13:10:59. | |
processor.py | File | 16431 bytes | April 17 2025 13:10:59. | |
statistics.py | File | 4418 bytes | April 17 2025 13:10:59. | |
style_guide.py | File | 15721 bytes | April 17 2025 13:10:59. | |
utils.py | File | 11197 bytes | April 17 2025 13:10:59. | |
violation.py | File | 3658 bytes | April 17 2025 13:10:59. |
"""Constants that define defaults.""" import re EXCLUDE = ( ".svn", "CVS", ".bzr", ".hg", ".git", "__pycache__", ".tox", ".nox", ".eggs", "*.egg", ) IGNORE = ("E121", "E123", "E126", "E226", "E24", "E704", "W503", "W504") SELECT = ("E", "F", "W", "C90") MAX_LINE_LENGTH = 79 INDENT_SIZE = 4 # Other constants WHITESPACE = frozenset(" \t") STATISTIC_NAMES = ("logical lines", "physical lines", "tokens") NOQA_INLINE_REGEXP = re.compile( # We're looking for items that look like this: # ``# noqa`` # ``# noqa: E123`` # ``# noqa: E123,W451,F921`` # ``# noqa:E123,W451,F921`` # ``# NoQA: E123,W451,F921`` # ``# NOQA: E123,W451,F921`` # ``# NOQA:E123,W451,F921`` # We do not want to capture the ``: `` that follows ``noqa`` # We do not care about the casing of ``noqa`` # We want a comma-separated list of errors # https://regex101.com/r/4XUuax/2 full explanation of the regex r"# noqa(?::[\s]?(?P<codes>([A-Z]+[0-9]+(?:[,\s]+)?)+))?", re.IGNORECASE, ) NOQA_FILE = re.compile(r"\s*# flake8[:=]\s*noqa", re.I)
SILENT KILLER Tool