Skip to content

Commit 751af8d

Browse files
committed
Update .cecli.ignore file path
1 parent 0370c14 commit 751af8d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

cecli/args.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -562,15 +562,15 @@ def get_parser(default_config_files, git_root):
562562
help="Enable/disable the addition of files listed in .gitignore to cecli's editing scope.",
563563
)
564564
default_cecli_ignore_file = (
565-
os.path.join(git_root, "cecli.ignore") if git_root else "cecli.ignore"
565+
os.path.join(git_root, ".cecli.ignore") if git_root else ".cecli.ignore"
566566
)
567567

568568
group.add_argument(
569569
"--cecli-ignore",
570570
metavar="CECLIIGNORE",
571571
type=lambda path_str: resolve_cecli_ignore_path(path_str, git_root),
572572
default=default_cecli_ignore_file,
573-
help="Specify the cecli ignore file (default: .cecli_ignore in git root)",
573+
help="Specify the cecli ignore file (default: .cecli.ignore in git root)",
574574
).complete = shtab.FILE
575575
group.add_argument(
576576
"--subtree-only",

0 commit comments

Comments
 (0)