pycodestyle
pycodestyle copied to clipboard
🎛 A Svelte library for building dynamic, infinitely customizable node-based user interfaces and flowcharts
Given the file: ```python foo = \ """bar """ ``` pycodestyle 2.3.1 crashes: ``` $ pycodestyle demo.py Traceback (most recent call last): File "/users/is/whughes/pyenvs/research3/bin/pycodestyle", line 11, in sys.exit(_main()) File "/users/is/whughes/pyenvs/research3/lib/python2.7/site-packages/pycodestyle.py",...
I'm trying to implement pycodestyle in an add-on for the Blender Text Editor, but having pycodestyle to read re-saved file, while editing is too slow, so my question is if...
I did a brief search and couldn't find an issue for this. There are cases where a `noqa` comment ends up left in the codebase when it is no longer...
Currently pycodestyle will complain about the following: ```python mydict = {12345: 'foo'} ``` > t-61.py:2:15: E127 continuation line over-indented for visual indent We are about to change this in https://github.com/Vimjas/vim-python-pep8-indent/pull/61,...
Hi, just to mention that for E133 there's no test in the test suite and the test for E131 is located in E12.py
Updating svelvet to version 3 breaks sveltekit. When starting a server just throws 11 `cound not resolve ""` errors. Downgrading to a version ` [email protected] dev > vite dev "--open"...
I would love to be able to render my own HTML within custom nodes. ``` data: { label: "my cool HTML string" label_type: "HTML" } ```
`dotenv` and `node.env` are requiring extra packages, while these packages are not necessary as the component library. so , consider to remove these packages, or move to devDependencies , thx
Fixes #951 Done by tracking enclosure count when inside a function param list (detected by `def` keyword) and checking whether the previous token's text is `,` to be sure that...