Skip to content

Commit 3a0468d

Browse files
committed
chore: move fields from xmodule to core
1 parent 1126a52 commit 3a0468d

File tree

3 files changed

+964
-290
lines changed

3 files changed

+964
-290
lines changed

setup.cfg

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,9 @@
88
# E501: line too long
99
# E722: do not use bare except, specify exception instead
1010
# We catch this with pylint, don't need 2 reports of the same issue
11-
ignore=E501,E402,E722
11+
# W503: line break before binary operator
12+
# Ignored because Black intentionally formats line breaks *before*
13+
# binary operators, following the updated PEP 8 recommendation.
14+
# Keeping W503 enabled would cause false positives on Black-formatted code.
15+
ignore=E501,E402,E722,W503
1216
exclude=docs/*,.tox/

0 commit comments

Comments
 (0)