2015-09-21 22:51:42 +00:00
|
|
|
# Copyright (c) 2015 Aaron Power
|
|
|
|
# Use of this source code is governed by the MIT license that can be
|
|
|
|
# found in the LICENSE file.
|
2015-09-29 16:59:17 +00:00
|
|
|
bin_name: Tokei
|
2015-09-20 09:40:07 +00:00
|
|
|
name: Tokei
|
2016-05-13 21:16:05 +00:00
|
|
|
version: 2.0.0
|
2015-09-20 09:40:07 +00:00
|
|
|
author: Aaron P. <theaaronepower@gmail.com>
|
2016-05-13 21:22:37 +00:00
|
|
|
about: Count code, quickly.
|
2015-09-20 09:40:07 +00:00
|
|
|
args:
|
|
|
|
- exclude:
|
|
|
|
short: e
|
|
|
|
long: exclude
|
|
|
|
help: Will ignore all files and directories containing the word ie --exclude node_modules
|
|
|
|
takes_value: true
|
|
|
|
- sort:
|
|
|
|
short: s
|
|
|
|
long: sort
|
|
|
|
takes_value: true
|
2015-09-21 10:29:58 +00:00
|
|
|
possible_values: [files, total, blanks, code, commments]
|
2015-09-20 09:40:07 +00:00
|
|
|
help: Will sort based on a certain column ie --sort=files will sort by file count.
|
|
|
|
- input:
|
|
|
|
index: 1
|
|
|
|
multiple: true
|
|
|
|
required: true
|
|
|
|
help: The input file(s)/directory(ies)
|
2015-10-27 10:05:06 +00:00
|
|
|
conflicts_with:
|
|
|
|
- languages
|
2015-11-26 22:32:13 +00:00
|
|
|
- files:
|
|
|
|
short: f
|
|
|
|
long: files
|
|
|
|
takes_value: false
|
|
|
|
help: Will print out the files found only recommended for debugging purposes
|
2015-09-20 09:40:07 +00:00
|
|
|
- languages:
|
|
|
|
short: l
|
|
|
|
long: languages
|
2015-09-23 10:28:05 +00:00
|
|
|
conflicts_with:
|
|
|
|
- input
|
2015-09-20 09:40:07 +00:00
|
|
|
help: prints out supported languages and their extensions
|