archunitpython.files
def
files( project_path: str | None = None) -> archunitpython.files.fluentapi.files.FileConditionBuilder:
42def project_files(project_path: str | None = None) -> "FileConditionBuilder": 43 """Entry point for file-level architecture rules. 44 45 Args: 46 project_path: Root directory of the project to analyze. 47 Defaults to current working directory. 48 """ 49 return FileConditionBuilder(project_path)
Entry point for file-level architecture rules.
Arguments:
- project_path: Root directory of the project to analyze. Defaults to current working directory.
def
project_files( project_path: str | None = None) -> archunitpython.files.fluentapi.files.FileConditionBuilder:
42def project_files(project_path: str | None = None) -> "FileConditionBuilder": 43 """Entry point for file-level architecture rules. 44 45 Args: 46 project_path: Root directory of the project to analyze. 47 Defaults to current working directory. 48 """ 49 return FileConditionBuilder(project_path)
Entry point for file-level architecture rules.
Arguments:
- project_path: Root directory of the project to analyze. Defaults to current working directory.