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

Adds test for `E133` which is enabled by the optional flag `--hang-closing` for issues #293 Per the docs: > The check E133 is mutually exclusive with check E123. Specifically this...

Fixed indentation level detection. Made the following changes. - Added error 117 and 118 to detect misuse of tabs or spaces depending on the initial tab - Added new variable...

Added in PEP 8 : """ Be consistent in return statements. Either all return statements in a function should return an expression, or none of them should. If any return...

This adds support for detecting source file encoding as defined in PEP263 in Python2. - inlined python's 3 codecs.detect_encoding to make python2 recognize PEP 263 encodings the same way as...

The following code ``` python if True: print(""" tab at start of this line """) ``` produces ``` test.py:3:1: E101 indentation contains mixed spaces and tabs test.py:3:1: W191 indentation contains...

needs patch

If anything precedes with two spaces, e.g. the indentation of a multiline string flake8 detects an E117 for the next correctly indented line (if indentation uses tabs): ``` TEST_STRING =...

``` printf 'foo = "bar" \t# comment\n' | pep8 - ``` I expected the following output but got nothing: ``` stdin:1:12: E261 at least two spaces before inline comment ```

Note: May be a dupe of (or at least related to) #882. I discovered this while writing a decorator to parse the values of `typing.get_type_hints()`. This isn't exactly a bug...

``` $ pycodestyle --version 2.7.0 ``` If you have two blank lines, a comment, and then a nested function, E306 is raised erroneously. (Since this false positive requires a genuine...

I was looking into https://github.com/jcrocholl/pep8/issues/330, and I noticed that the following don't cause E713 when they should: ``` if not (X) in Y: pass ``` ``` if not X() in...