Options (3)
-c, --codebooleanFormat the code passed in as a string
Example:
black {{[-c|--code]}} "{{code}}"-q, --quietbooleanAuto-format a file or directory, emitting exclusively error messages to `stderr`
Example:
black {{[-q|--quiet]}} {{path/to/file_or_directory}}-S, --skip-string-normalizationbooleanAuto-format a file or directory without replacing single quotes with double quotes (adoption helper, avoid using this for new projects)
Example:
black {{[-S|--skip-string-normalization]}} {{path/to/file_or_directory}}Examples (6)
Auto-format a file or entire directory
black path/to/file_or_directoryFormat the code passed in as a string
black [-c|--code] "code"Show whether a file or a directory would have changes made to them if they were to be formatted
black --check path/to/file_or_directoryShow changes that would be made to a file or a directory without performing them (dry-run)
black --diff path/to/file_or_directoryAuto-format a file or directory, emitting exclusively error messages to `stderr`
black [-q|--quiet] path/to/file_or_directoryAuto-format a file or directory without replacing single quotes with double quotes (adoption helper, avoid using this for new projects)
black [-S|--skip-string-normalization] path/to/file_or_directorymade by @shridhargupta | data from tldr-pages