mirror of
https://github.com/XAMPPRocky/tokei
synced 2024-10-30 07:11:48 +00:00
49 lines
1.5 KiB
YAML
49 lines
1.5 KiB
YAML
# Copyright (c) 2015 Aaron Power
|
|
# Use of this source code is governed by the APACHE2.0/MIT license that can be
|
|
# found in the LICENCE-{APACHE/MIT} file.
|
|
about: Count Code, Quickly.
|
|
author: Aaron P. <theaaronepower@gmail.com>
|
|
bin_name: Tokei
|
|
name: Tokei
|
|
version: 3.0.0
|
|
args:
|
|
- exclude:
|
|
help: Ignore all files & directories containing the word.
|
|
long: exclude
|
|
short: e
|
|
takes_value: true
|
|
- files:
|
|
help: Will print out statistics on individual files.
|
|
long: files
|
|
short: f
|
|
takes_value: false
|
|
- file_input:
|
|
help: "Gives statistics from a previous tokei run. Can be given a file path, or \"stdin\" to read from stdin."
|
|
long: input
|
|
short: i
|
|
takes_value: true
|
|
- input:
|
|
conflicts_with:
|
|
- languages
|
|
help: The input file(s)/directory(ies)
|
|
index: 1
|
|
multiple: true
|
|
required: true
|
|
- languages:
|
|
conflicts_with:
|
|
- input
|
|
help: Prints out supported languages and their extensions.
|
|
long: languages
|
|
short: l
|
|
- output:
|
|
help: Outputs Tokei in a specific format.
|
|
long: output
|
|
possible_values: [cbor, json, toml, yaml]
|
|
short: o
|
|
takes_value: true
|
|
- sort:
|
|
help: Will sort based on column
|
|
long: sort
|
|
possible_values: [files, lines, blanks, code, comments]
|
|
short: s
|
|
takes_value: true
|