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

I know that's the pep8 spec.. but we've got 2 space indent dictated at my work. That breaks some things. it'd be better to provide some sort of override rather...

Given the following `example.py`, ```python my_list = [1, 2, 3] a = 2+2 b = my_list[1:1+1] ``` `pycodestyle` incorrectly warns about the missing whitespace for the `+` operator inside the...

E721 (do not compare types, use 'isinstance()') has an exception that allows comparison for types which are not obvious. It uses isidentifier() to determine whether it is a variable. This...

I expect *some* kind of error here, but none is produced: ```python f = x = y = z = 1 f(x, y, z) ``` perhaps `E131 continuation line unaligned...

I think pycodestyle's handling of binary operator expressions that are the values of kwargs could be improved. There is a case that is a little ambiguous to me as to...

Consider ``` [obj for obj in iterator if some_long_cond() and some_other_cond()] (obj for obj in iterator if some_long_cond() and some_other_cond()) sorted(obj for obj in iterator if some_long_cond() and some_other_cond()) ```...

How I read PEP-8, it doesn't outlaw bare excepts, but merely recommends to catch more specific exceptions when possible. But what if there is no particular exception you want to...

Hi, if there are no whitespaces around ** no error is thrown (expected E225). `x **y` or `x** y` with one whitespace is throwing E225 as expected. Version is 2.3.1...

While trying to work out the kinks in my attempted fix for issue #667, I realised the indentation checks are more broken than I expected. This test is in the...

New in pycodestyle 2.4, a long-unbroken-string (e.g. URL) in the first line of a multiline string is now an error. I suspect it is due to https://github.com/PyCQA/pycodestyle/pull/630 , as the...