Mateus Oliveira
Mateus Oliveira
Hi everyone, I created repository aiming this purpose https://github.com/mateusoliveira43/docker-image-poetry I tried to follow the style of the Python Docker Image repository. The Image is already in Docker Hub https://hub.docker.com/r/mateusoliveira43/poetry (if...
I had the same problem. Suppose this module is called `cli.py` ```python import typer CLI = typer.Typer() @CLI.command() def greet() -> None: """ Greet someone. Parameters ---------- param1 : str...
I have updated the tests, to remove a bit of duplication. But I noticed a problem: if a parameter documentation takes more then one line, only the first line is...
@kaovilai I did not intend to change `make update` at first. That command would run `gofmt` and `goimports` (which is a different thing then generating files) and generate files, right?...
@tiger oh no, `make update` will not format Go code anymore (but as it was, it would not run all linters defined in `golangci-lint` config file, only `gofmt` and `goimport`....
@kaovilai that's right!
@mmorel-35 could you please review?
Maybe related to this issue https://github.com/golangci/golangci-lint/issues/1453 I was trying to do this by a separate command, but found problems. the idea was to use https://github.com/santhosh-tekuri/jsonschema with https://json.schemastore.org/golangci-lint.json (per https://github.com/golangci/golangci-lint/discussions/4247#discussioncomment-7812027) Example...
Checked the file in the release tag https://github.com/golangci/golangci-lint/blob/e3c2265f4939976874989e159386b3bb7dcf8e1f/.golangci.reference.yml and it really has `output.sort-results`, which https://github.com/SchemaStore/schemastore/blob/master/src/schemas/json/golangci-lint.json does not have. How is the process of updating this file is `SchemaStore/schemastore` repo? I...
@ldez opened a PR with more fixes https://github.com/SchemaStore/schemastore/pull/3440 I will wait you approve it to undraft it