tokei/tokei.example.toml
Theo a69e16b225
Specify the --sort option in the configuration files (#550)
* Specify the --sort option in the configuration files

* Let --sort option be case insensitive in configuration files

* style: inline sort variable

* Add an example of using sort to the tokei.example.toml
2020-06-02 14:03:54 +02:00

9 lines
314 B
TOML

# The width of the terminal output in columns.
columns = 80
# Sort languages based on the specified column.
sort = "lines"
# If set, tokei will only show the languages in `types`.
types = ["Python"]
# Any doc strings (e.g. `"""hello"""` in python) will be counted as comments.
treat_doc_strings_as_comments = true