Skip to content

Commit 5b85774

Browse files
committed
Fixed eslint exceptions 1770523695
1 parent 592b7ca commit 5b85774

1 file changed

Lines changed: 0 additions & 9 deletions

File tree

.github/workflows/scripts/disable_statements_check.py

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -215,12 +215,6 @@ def check_file(self, file_path: str) -> list[str]:
215215
if f".{extension.lower()}" not in VALID_EXTENSIONS:
216216
return violations
217217

218-
# for item in VALID_EXTENSIONS:
219-
# print(item)
220-
# if not file_path.endswith(item):
221-
222-
print(file_path)
223-
224218
# Check if it's a test file
225219
is_test_file = file_path.endswith(
226220
(".test.ts", ".spec.ts", ".test.tsx", ".spec.tsx")
@@ -232,8 +226,6 @@ def check_file(self, file_path: str) -> list[str]:
232226
except (OSError, UnicodeDecodeError) as e:
233227
return [f"{file_path}: Error reading file - {e}"]
234228

235-
print(content)
236-
237229
# Auto-discover and run all check methods
238230
# Patterns are naturally specific - they only match in files
239231
# where they exist
@@ -251,7 +243,6 @@ def check_file(self, file_path: str) -> list[str]:
251243

252244
violations.extend(method(content, file_path))
253245

254-
print("boo", violations)
255246
return violations
256247

257248
def check_files(self, file_paths: list[str]) -> list[str]:

0 commit comments

Comments
 (0)