Open malkoG opened 1 year ago
balpan init subcommand scans all of files and add TODO comments.
balpan init
But, in some cases, someone wants to generate TODO comments on specific files
If we want to add TODO comments on python source code, we can type balpan analyze **/*.py
balpan analyze **/*.py
If we want to add TODO comments on all files that exist inside helix-loader directory, we can type balpan analyze helix-loader/**/*.*
balpan analyze helix-loader/**/*.*
balpan init
subcommand scans all of files and add TODO comments.But, in some cases, someone wants to generate TODO comments on specific files
example 1 - matching with extention
If we want to add TODO comments on python source code, we can type
balpan analyze **/*.py
example 2 - matching with subdirectory
If we want to add TODO comments on all files that exist inside helix-loader directory, we can type
balpan analyze helix-loader/**/*.*