<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/flake8.git/src/flake8/defaults.py, branch 3.7.6</title>
<subtitle>gitlab.com: pycqa/flake8.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/flake8.git/'/>
<entry>
<title>Fix noqa example comment [ci skip]</title>
<updated>2018-12-27T17:03:55+00:00</updated>
<author>
<name>Anthony Sottile</name>
<email>asottile@umich.edu</email>
</author>
<published>2018-12-27T17:03:55+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/flake8.git/commit/?id=6ad56f73daa1a23081ed40a409d53ef28bf53c3f'/>
<id>6ad56f73daa1a23081ed40a409d53ef28bf53c3f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add link to regex101 for noqa regex</title>
<updated>2018-12-27T16:28:08+00:00</updated>
<author>
<name>Tomer Keren</name>
<email>tomer.keren.dev@gmail.com</email>
</author>
<published>2018-12-27T16:28:08+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/flake8.git/commit/?id=445d19b9de7cd87138a4d4fb07e666720625c484'/>
<id>445d19b9de7cd87138a4d4fb07e666720625c484</id>
<content type='text'>
This provides a step by step doc for the regular expression, and makes iterating on it much easier
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This provides a step by step doc for the regular expression, and makes iterating on it much easier
</pre>
</div>
</content>
</entry>
<entry>
<title>Update regex to allow no space noqa</title>
<updated>2018-12-27T16:18:52+00:00</updated>
<author>
<name>Tomer Keren</name>
<email>tomer.keren.dev@gmail.com</email>
</author>
<published>2018-12-27T16:18:52+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/flake8.git/commit/?id=08492ee857a16a1f6d3b942456de7010e3f0d03f'/>
<id>08492ee857a16a1f6d3b942456de7010e3f0d03f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Clearer docs, NOQA_INLINE_REGEXP comment - fixes #469</title>
<updated>2018-10-28T19:17:01+00:00</updated>
<author>
<name>Jesaja Everling</name>
<email>jeverling@gmail.com</email>
</author>
<published>2018-10-28T19:08:29+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/flake8.git/commit/?id=cafe7805147a44959038dfb489a95d157a8e43b9'/>
<id>cafe7805147a44959038dfb489a95d157a8e43b9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Use black to reformat Flake8</title>
<updated>2018-10-20T17:37:14+00:00</updated>
<author>
<name>Ian Stapleton Cordasco</name>
<email>graffatcolmingov@gmail.com</email>
</author>
<published>2018-10-20T12:31:42+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/flake8.git/commit/?id=c58a4662d8920cf70ea688edd9eaf9d783a856a7'/>
<id>c58a4662d8920cf70ea688edd9eaf9d783a856a7</id>
<content type='text'>
Instead of just using Flake8 and pylint to keep Flake8 clean, let's also
use black to make it less manual for clean-up.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Instead of just using Flake8 and pylint to keep Flake8 clean, let's also
use black to make it less manual for clean-up.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix "invalid escape sequence" when running with -Werror</title>
<updated>2018-06-18T06:25:07+00:00</updated>
<author>
<name>Anthony Sottile</name>
<email>asottile@umich.edu</email>
</author>
<published>2018-06-18T06:25:07+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/flake8.git/commit/?id=6a725a0a52f44b7a84617bb3740836c9dcbebfc8'/>
<id>6a725a0a52f44b7a84617bb3740836c9dcbebfc8</id>
<content type='text'>
```
$ python3.7 -Werror
Python 3.7.0rc1 (default, Jun 16 2018, 03:32:08) 
[GCC 5.4.0 20160609] on linux
Type "help", "copyright", "credits" or "license" for more information.
&gt;&gt;&gt; '# noqa(?:: (?P&lt;codes&gt;([A-Z][0-9]+(?:[,\s]+)?)+))?'
  File "&lt;stdin&gt;", line 1
SyntaxError: invalid escape sequence \s
```</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
```
$ python3.7 -Werror
Python 3.7.0rc1 (default, Jun 16 2018, 03:32:08) 
[GCC 5.4.0 20160609] on linux
Type "help", "copyright", "credits" or "license" for more information.
&gt;&gt;&gt; '# noqa(?:: (?P&lt;codes&gt;([A-Z][0-9]+(?:[,\s]+)?)+))?'
  File "&lt;stdin&gt;", line 1
SyntaxError: invalid escape sequence \s
```</pre>
</div>
</content>
</entry>
<entry>
<title>Allow spaces in # noqa lists</title>
<updated>2017-07-29T00:31:32+00:00</updated>
<author>
<name>Ian Stapleton Cordasco</name>
<email>graffatcolmingov@gmail.com</email>
</author>
<published>2017-07-29T00:31:32+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/flake8.git/commit/?id=ec996ffd85cbe6157b7cf480e7c84b36d2153f4b'/>
<id>ec996ffd85cbe6157b7cf480e7c84b36d2153f4b</id>
<content type='text'>
To match our new configuration file format and its allowance for spaces
in the list

Closes #356
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
To match our new configuration file format and its allowance for spaces
in the list

Closes #356
</pre>
</div>
</content>
</entry>
<entry>
<title>Clean up some uses of set, list, and dict</title>
<updated>2017-05-13T14:14:41+00:00</updated>
<author>
<name>Jon Dufresne</name>
<email>jon.dufresne@gmail.com</email>
</author>
<published>2017-05-01T14:03:21+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/flake8.git/commit/?id=541bac6a824d2308d138df1f92458159c54ea7bc'/>
<id>541bac6a824d2308d138df1f92458159c54ea7bc</id>
<content type='text'>
* Use set literals instead of set([...])
* Avoid list(sorted(...)) as sorted returns a list
* Replace dict() with dict literal
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Use set literals instead of set([...])
* Avoid list(sorted(...)) as sorted returns a list
* Replace dict() with dict literal
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix subtle reporting bug for default on plugins</title>
<updated>2016-11-16T01:56:18+00:00</updated>
<author>
<name>Ian Cordasco</name>
<email>graffatcolmingov@gmail.com</email>
</author>
<published>2016-11-16T01:37:52+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/flake8.git/commit/?id=c50b747a1a8b470574b5fc1016ee8cb598ab951e'/>
<id>c50b747a1a8b470574b5fc1016ee8cb598ab951e</id>
<content type='text'>
When we refactored our decision process to fix #239, we broke a subtle
corner case where extensions that are not off-by-default are to be
reported.

This further refactors that logic and adds specific tests around it to
ensure it works as expected and doesn't regress.

Closes #257
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
When we refactored our decision process to fix #239, we broke a subtle
corner case where extensions that are not off-by-default are to be
reported.

This further refactors that logic and adds specific tests around it to
ensure it works as expected and doesn't regress.

Closes #257
</pre>
</div>
</content>
</entry>
<entry>
<title>Match noqa for users with explanations</title>
<updated>2016-07-28T11:48:15+00:00</updated>
<author>
<name>Ian Cordasco</name>
<email>graffatcolmingov@gmail.com</email>
</author>
<published>2016-07-28T11:25:41+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/flake8.git/commit/?id=c0ddc54f2f5e3f453735780e639be08ef3b15e2d'/>
<id>c0ddc54f2f5e3f453735780e639be08ef3b15e2d</id>
<content type='text'>
This makes the regular expression a bit more complex, and potentially
slower, but it will fix the issue where users had noqa comments with
colons followed by explanations.

Closes #178
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This makes the regular expression a bit more complex, and potentially
slower, but it will fix the issue where users had noqa comments with
colons followed by explanations.

Closes #178
</pre>
</div>
</content>
</entry>
</feed>
