mirror of
https://github.com/codeflash-ai/codeflash-internal.git
synced 2026-05-04 18:25:18 +00:00
style: auto-fix linting issues
This commit is contained in:
parent
dfdb5cc586
commit
eaa2c7a493
1 changed files with 2 additions and 6 deletions
|
|
@ -36,13 +36,9 @@ from functools import lru_cache
|
|||
if TYPE_CHECKING:
|
||||
from aiservice.llm_models import LLM
|
||||
|
||||
_DEFAULT_EXPORT_PATTERN = re.compile(
|
||||
r"\bexport\s+default\s+(?:class|function)\s+([a-zA-Z_$][a-zA-Z0-9_$]*)\b"
|
||||
)
|
||||
_DEFAULT_EXPORT_PATTERN = re.compile(r"\bexport\s+default\s+(?:class|function)\s+([a-zA-Z_$][a-zA-Z0-9_$]*)\b")
|
||||
|
||||
_NAMED_EXPORT_PATTERN = re.compile(
|
||||
r"\bexport\s+(?:class|function|const)\s+([a-zA-Z_$][a-zA-Z0-9_$]*)\b"
|
||||
)
|
||||
_NAMED_EXPORT_PATTERN = re.compile(r"\bexport\s+(?:class|function|const)\s+([a-zA-Z_$][a-zA-Z0-9_$]*)\b")
|
||||
|
||||
_JS_RESERVED_WORDS = frozenset(
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue