File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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" ,
You can’t perform that action at this time.
0 commit comments