Ryan Morshead

Results 319 comments of Ryan Morshead
trafficstars

We could certainly point to it as an example of another language which has a similar feature. However, sigils differ syntactically, as Guido pointed out, as well as from the...

I managed to find [this articular](http://tc39wiki.calculist.org/es6/template-strings/) from TC39 (the ECMAScript standards organization) unfortunately the link to the full proposal is broken and I've been unable to find it - this...

I'm working with Python and my problem was the order in which I specified my language servers: ```js { "languages": { "Python": { "format_on_save": "on", "language_servers": ["pyright", "ruff"] // "language_servers":...

As mentioned in #1482, my idea to help resolve this is to have a configuration option that behaves similarly to MyPy's [`warn_unused_ignore`](https://mypy.readthedocs.io/en/stable/config_file.html#confval-warn_unused_ignores) which, if true, emits a warning if a...

> I think we should be able to choose between warnings and errors. In my opinion it should always result in an error. Typically, coverage is checked in CI, so...

> Like exclude_lines, it would be a regex that matches any part of the line If this is how we want the option to work, perhaps it could be named...

The way I'm thinking about this option is that it should cause both coverage of the given lines to be treated as excluded, and a warning if they are covered....

> But the warning is also quite distinct from any reporting those commands do... The `--fail-under` option, which is present for of all the reporting commands, seems somewhat similar in...

I've amended the language of my comment to more accurately reflect my intended meaning. Instead of saying that lines should be "excluded from reports" I now say that they should...