mirror of
https://github.com/TheAlgorithms/Python.git
synced 2025-03-29 09:56:43 +00:00
* [pre-commit.ci] pre-commit autoupdate updates: - [github.com/astral-sh/ruff-pre-commit: v0.9.10 → v0.11.0](https://github.com/astral-sh/ruff-pre-commit/compare/v0.9.10...v0.11.0) - [github.com/abravalheri/validate-pyproject: v0.23 → v0.24](https://github.com/abravalheri/validate-pyproject/compare/v0.23...v0.24) * Fix ruff issues --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Christian Clauss <cclauss@me.com>
34 lines
1.1 KiB
Python
Executable File
34 lines
1.1 KiB
Python
Executable File
#!python
|
|
import os
|
|
|
|
try:
|
|
from .build_directory_md import good_file_paths
|
|
except ImportError:
|
|
from build_directory_md import good_file_paths # type: ignore[no-redef]
|
|
|
|
filepaths = list(good_file_paths())
|
|
assert filepaths, "good_file_paths() failed!"
|
|
|
|
if upper_files := [file for file in filepaths if file != file.lower()]:
|
|
print(f"{len(upper_files)} files contain uppercase characters:")
|
|
print("\n".join(upper_files) + "\n")
|
|
|
|
if space_files := [file for file in filepaths if " " in file]:
|
|
print(f"{len(space_files)} files contain space characters:")
|
|
print("\n".join(space_files) + "\n")
|
|
|
|
if hyphen_files := [
|
|
file for file in filepaths if "-" in file and "/site-packages/" not in file
|
|
]:
|
|
print(f"{len(hyphen_files)} files contain hyphen characters:")
|
|
print("\n".join(hyphen_files) + "\n")
|
|
|
|
if nodir_files := [file for file in filepaths if os.sep not in file]:
|
|
print(f"{len(nodir_files)} files are not in a directory:")
|
|
print("\n".join(nodir_files) + "\n")
|
|
|
|
if bad_files := len(upper_files + space_files + hyphen_files + nodir_files):
|
|
import sys
|
|
|
|
sys.exit(bad_files)
|