Sorin Sbarnea

Results 548 issues of Sorin Sbarnea

When integrating with other tools (like vscode extension, or when trying to script exporting tasks to github actions) we really want to avoid having to parse the free-form output, especially...

help wanted
feature
good first issue

### Describe the bug **context** I observed that boolean arguments that do not require a value on directives do not work with myst-parser, even if they do work well with...

bug

### Describe the bug I got an error below when running `gh pr create --label skip-changelog --fill` from inside a github action. It is quite weird because I got the...

bug
p2
gh-pr

[XDG Base Directory Specification](https://specifications.freedesktop.org/basedir-spec/basedir-spec-latest.html) defines is a single base directory relative to which user-specific non-essential (cached) data should be written. This directory is defined by the environment variable $XDG_CACHE_HOME. This...

enhancement
waiting-for-contributor

While trying to evaluate use of this plugin for one project where I have a chain of 4 tox environments run one after another, I discovered two problems with it,...

enhancement

I am not sure what YAML loader is used but pyup, but when I sorted all YAML warnings identified by yamllint inside the `.pyup.yml` I realised that https://pyup.io started to...

bug
considering

Avoids confusing tracebacks when ReadErrors exceptions are raised from the yaml reader. Now we do print the filename that failed to load and stop processing in order to avoid additional...

Parsable format (aka pep8) has being the most popular linting output for years. Still, enabling it with yamllint disables the coloring, which does penalize users for no good reasons. Color...

Here is an example where yamllint reports an error, even if based on the documented examples it should work fine: ```yaml --- platforms: # - name: centos7 - name: centos...

In order to make the format compatible with other similar tools, I wanted chage the config to always use parsable but adding `format: parsable` to the config does not work....