Skip to content

Commit

Permalink
docs
Browse files Browse the repository at this point in the history
- updated CONTRIBUTING.md
- removed sample docs
  • Loading branch information
nishnash54 authored and casperdcl committed May 2, 2020
1 parent 795cd53 commit cb2feea
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 15 deletions.
15 changes: 0 additions & 15 deletions .meta/docs.md

This file was deleted.

13 changes: 13 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,19 @@ However it would be helpful to bear in mind:
* beta: well-used; commented, perhaps still missing tests
* stable: >10 users; commented, 80% coverage

#### Integrating new arguments with Bash autocomplete for CLI

Creating new argument
- Supported by tqdm CLI
+ Update docstring under `tqdm.tqdm.__init__.__doc__` or if *extra cli option* add to `tqdm.cli.CLI_EXTRA_DOC`
+ Follow docstring formatting `argument<space><space>:<space>string`
- Not supported by tqdm CLI
+ Update docstrings under `tqdm.tqdm.__init__.__doc__`
+ Add unsupported argument to `tqdm.cli.UNSUPPORTED_OPTS`

**Note:** Options for CLI arguments added to script `.meta/mkcompletion.py`

**Warning:** An additional `name` argument is ignored.

## TESTING

Expand Down

0 comments on commit cb2feea

Please sign in to comment.