zulip/tools/linter_lib
Anders Kaseorg 037f696d26 Enable pycodestyle W605 (invalid escape sequence).
The only changes visible at the AST level, checked using
https://github.com/asottile/astpretty, are

zerver/lib/test_fixtures.py:
'\x1b\\[(1|0)m' ↦ '\\x1b\\[(1|0)m'
'\\[[X| ]\\] (\\d+_.+)\n' ↦ '\\[[X| ]\\] (\\d+_.+)\\n'

which is fine because re treats '\\x1b' and '\\n' the same way as
'\x1b' and '\n'.

Signed-off-by: Anders Kaseorg <andersk@mit.edu>
2018-07-03 16:54:46 +02:00
..
__init__.py Extract tools/linter_lib/custom_check.py. 2017-06-05 09:20:21 -07:00
custom_check.py Enable pycodestyle W605 (invalid escape sequence). 2018-07-03 16:54:46 +02:00
exclude.py api: Update lint and analysis code to forget about now-gone files. 2017-07-31 21:24:52 -07:00
pep8.py Enable pycodestyle W605 (invalid escape sequence). 2018-07-03 16:54:46 +02:00
printer.py Remove `from __future__ import absolute_import`. 2017-10-17 22:59:42 -07:00
pyflakes.py lint: Suppress complaint about `tags` in Sphinx config. 2018-01-23 13:56:21 -08:00