We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 26fdf7a commit cca495bCopy full SHA for cca495b
cycode/cli/files_collector/walk_ignore.py
@@ -30,7 +30,7 @@ def _collect_top_level_ignore_files(path: str, *, is_cycodeignore_allowed: bool
30
ignore_files = []
31
top_paths = reversed(list(_walk_to_top(path))) # we must reverse it to make top levels more prioritized
32
33
- supported_files = {_SUPPORTED_IGNORE_PATTERN_FILES}
+ supported_files = set(_SUPPORTED_IGNORE_PATTERN_FILES)
34
if is_cycodeignore_allowed:
35
supported_files.add(consts.CYCODEIGNORE_FILENAME)
36
logger.debug('.cycodeignore files included due to scan configuration')
0 commit comments