Merge pull request #484 from urfave/flake8-typegen

Run flake8 checks on generate-flag-types
main
Jesse Szwedko 8 years ago committed by GitHub
commit 9646e60b1a

@ -37,7 +37,7 @@ before_script:
- ln -sv ${TRAVIS_BUILD_DIR} ${GOPATH%%:*}/src/gopkg.in/urfave/cli.v2
script:
- flake8 runtests cli-v1-to-v2
- flake8 runtests cli-v1-to-v2 generate-flag-types
- ./runtests gen
- ./runtests vet
- ./runtests test

@ -37,8 +37,9 @@ The meaning of each field is as follows:
name (string) - The type "name", which will be suffixed with
`Flag` when generating the type definition
for `cli` and the wrapper type for `altsrc`
type (string) - The type that the generated `Flag` type for `cli`
is expected to "contain" as its `.Value` member
type (string) - The type that the generated `Flag` type for
`cli` is expected to "contain" as its `.Value`
member
value (bool) - Should the generated `cli` type have a `Value`
member?
dest (bool) - Should the generated `cli` type support a

Loading…
Cancel
Save