Skip to content

Releases: cfedermann/python-code-validator

Initial alpha release

06 Aug 20:55
Compare
Choose a tag to compare
Initial alpha release Pre-release
Pre-release

Runs black, mypy, pylint, reorder-python-imports and safety.

Validation strategy

  1. Run black -S -l $BLACK_LINE_MAXLEN version 21.7b0
  2. Run mypy version 0.900
  3. Run pylint version 2.9.6, failing if score < $PYLINT_THRESHOLD
  4. Run reorder-python-imports version 2.6.0
    5.Run safety version 1.10.3

Default settings

  • BLACK_LINE_MAXLEN = 100
  • PYLINT_THRESHOLD = 9