Svelvet icon indicating copy to clipboard operation
Svelvet copied to clipboard

🎛 A Svelte library for building dynamic, infinitely customizable node-based user interfaces and flowcharts

Results 197 Svelvet issues
Sort by recently updated
recently updated
newest added

```python a = lambda x: x # Raises E731 a = ( lambda x: x ) # Doesn't raise E731 a, b = lambda x: x, lambda y: y #...

E221 ("Multiple spaces before operator") is being seen in the below snippet on the -1: ```python { "some long key": 1, "some other long key": 2, "short key": 3, "other...

Closes https://github.com/PyCQA/pycodestyle/issues/945 (see in particular https://github.com/PyCQA/pycodestyle/issues/945#issuecomment-643750340).

Handle a common pattern used by Python's `@typing.overload`

I'm getting "PEP 8: missing whitespace around arithmetic operator" introspection flag in cases where I should not, per this section of Pep 8: "If operators with different priorities are used,...

opinion

Warehouse now uses the project_urls provided to display links in the sidebar on [this screen](https://pypi.org/project/requests/), as well as including them in API responses to help the automation tool find the...

This (correctly, IMO) produces no warnings: ```python import foo dct = { 'key': foo.yadayada() if foo.some_condition() # raises no warnings else foo.blablebli() } ``` On the other hand, simply adding...

Code like this: ``` python d = {} d .items() ``` should result in a warning about excessive whitespace.

needs patch

As discussed/hijacked in #344, I proposed to have an option to limit the length of docstring and comments: 1. Multi-line docstring: `max_doc_length`, default to `max_line_length` (current behavior) 2. Single-line docstring:...