Skip to content

Releases: openedx/edx-lint

Fix line numbers for new annotation linting

26 Jan 19:35
65da2cc
Compare
Choose a tag to compare

Add constraints.txt file

26 Jan 13:20
a605f44
Compare
Choose a tag to compare

Add setting and toggle annotation linting

24 Jan 18:10
e3e748e
Compare
Choose a tag to compare

Adding global constraint file.

20 Aug 12:05
e1549a1
Compare
Choose a tag to compare

A central location for most common version constraints (across edx repos) for pip-installation.

Adding global constraint file.

20 Aug 11:47
c508b59
Compare
Choose a tag to compare

A central location for most common version constraints (across edx repos) for pip-installation.

v1.5.0

30 Jun 13:32
4a15b0d
Compare
Choose a tag to compare
  • Breaking: dropped support for Python 2.
  • Pylintrc: dropped code scoring.
  • Fixed: the .editorconfig file was not installed, and so was not writable.
  • Added support for Python 3.8

Upgrade pylint

03 Jan 16:07
bd0bd38
Compare
Choose a tag to compare

Upgrades to latest pylint that supports Python 2.

Add Feature Toggle Linter

05 Jun 17:09
d9ba440
Compare
Choose a tag to compare

Adds a linter to find feature toggles that are missing documentation, as well as waffle methods that are now illegal.

FIX: Remove ungrouped-imports from pylint

23 May 15:58
e61d224
Compare
Choose a tag to compare

It wasn't enough to remove ungrouped-imports from the enabled list, it needed to be added to the disabled list.

Remove ungrouped-imports from pylint

19 May 01:17
2722560
Compare
Choose a tag to compare

Pylint will no longer complain about ungrouped-imports. This rule was incompatible
with the isort rules that group import x together before from x import y, which
would sometimes separate rules for the same repo.