Florian Best
Florian Best
The source code of `json-enc` is very simple: https://unpkg.com/[email protected]/dist/ext/json-enc.js It can easily be extended to add some more post-processing. I am also interested in handling data types better there.
here is one example, which assumes the source element is a ``, accesses it's `.elements[name].type` and just makes a mapping of common types. Additionally it transforms `"foo.bar"="value"` into `{"foo": {"bar":...
> So as a PoC it's great. But the code needs to be more rigid to handle the complete set of HTMX cases. yes, it's only meant to be a...
When could you provide a fix?
another false-positive `raise Exception(f"Select a valid asset from {', '.join(ASSETS)}")` from https://github.com/charliermarsh/ruff/issues/2854
I would like to see this as well! `filter = '(&(objectClass=person)(uid=%s)' % (username,)` is vulnerable. Instead `ldap.filter.filter_format('(&(objectClass=person)(uid=%s)' , [username])` can be used to escape filters. `dn = 'uid=%s,cn=users,dc=base' % (username,)`...
@ericwb or anyone else: would you review my implementation for ruff: see https://github.com/astral-sh/ruff/pull/2811#issuecomment-1644006896
We need `multi_line_output=5` (`vert-grid-grouped`).
This is nearly the last missing pycodestyle check. Having it would allow use to throw away the slow `pycodestyle`, `flake8` and `autopep8` pre-commit hooks.
Maybe `choices` is a more appropriate name than `suggest`?