Hrabal/TemPy

View on GitHub

Showing 205 of 205 total issues

Indentation contains tabs
Open

            return "%s=%s" % (k_norm, v)
Severity: Minor
Found in tempy/renderer.py by pep8

On new projects, spaces-only are strongly recommended over tabs.

Okay: if True:\n    return
W191: if True:\n\treturn

Over-indented
Open

            print(f"\033[1m{s}\033[0m")
Severity: Minor
Found in setup.py by pep8

Use indent_size (PEP8 says 4) spaces per indentation level.

For really old code that you don't want to mess up, you can continue
to use 8-space tabs.

Okay: a = 1
Okay: if a == 0:\n    a = 1
E111:   a = 1
E114:   # a = 1

Okay: for item in items:\n    pass
E112: for item in items:\npass
E115: for item in items:\n# Hi\n    pass

Okay: a = 1\nb = 2
E113: a = 1\n    b = 2
E116: a = 1\n    # b = 2

TODO found
Open

## TODO plan:
Severity: Minor
Found in CONTRIBUTING.md by fixme

TODO found
Open

    """TempyList is a class factory, it works for both ul and ol lists (TODO: dl).
Severity: Minor
Found in tempy/widgets/tempylist.py by fixme

TODO found
Open

The TODO list below is a general plan of what I (we!) intend to do next. You can find the actual planned activities looking  in the [Issues](https://github.com/Hrabal/TemPy/issues) of this repo.
Severity: Minor
Found in CONTRIBUTING.md by fixme
Severity
Category
Status
Source
Language