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 - ln -sv ${TRAVIS_BUILD_DIR} ${GOPATH%%:*}/src/gopkg.in/urfave/cli.v2
script: script:
- flake8 runtests cli-v1-to-v2 - flake8 runtests cli-v1-to-v2 generate-flag-types
- ./runtests gen - ./runtests gen
- ./runtests vet - ./runtests vet
- ./runtests test - ./runtests test

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

Loading…
Cancel
Save