<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/flake8.git/flake8/hooks.py, branch bug/52</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>Change the git-hook ignore default to None</title>
<updated>2015-04-06T04:01:44+00:00</updated>
<author>
<name>Ian Cordasco</name>
<email>graffatcolmingov@gmail.com</email>
</author>
<published>2015-04-06T04:01:43+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/flake8.git/commit/?id=12fab2f8ad8f09553cebdf6a077519266eae9002'/>
<id>12fab2f8ad8f09553cebdf6a077519266eae9002</id>
<content type='text'>
When ignore is an empty string, it will apparently not run any checks at
all. Using None as the default ensures that it does run the appropriate
checks.

Closes #52
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
When ignore is an empty string, it will apparently not run any checks at
all. Using None as the default ensures that it does run the appropriate
checks.

Closes #52
</pre>
</div>
</content>
</entry>
<entry>
<title>Add compatibility layer for Python 2.6</title>
<updated>2015-03-07T05:43:36+00:00</updated>
<author>
<name>Ian Cordasco</name>
<email>graffatcolmingov@gmail.com</email>
</author>
<published>2015-03-07T05:43:35+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/flake8.git/commit/?id=0e2b873c38321941572ea887f7708710602fe809'/>
<id>0e2b873c38321941572ea887f7708710602fe809</id>
<content type='text'>
os.path.relpath on Python 2.6 returns slightly different output than it
does on 2.7. Rather than try to write tests around the behaviour, it
makes sense to have a common relpath function that behaves the same on
every version.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
os.path.relpath on Python 2.6 returns slightly different output than it
does on 2.7. Rather than try to write tests around the behaviour, it
makes sense to have a common relpath function that behaves the same on
every version.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'local/pr/2'</title>
<updated>2015-03-07T05:26:44+00:00</updated>
<author>
<name>Ian Cordasco</name>
<email>graffatcolmingov@gmail.com</email>
</author>
<published>2015-03-07T05:26:44+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/flake8.git/commit/?id=7ab30a747fbb17af7ef45901f647c21603f44bfc'/>
<id>7ab30a747fbb17af7ef45901f647c21603f44bfc</id>
<content type='text'>
Conflicts:
	flake8/hooks.py
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Conflicts:
	flake8/hooks.py
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge remote-tracking branch 'origin/gh/2'</title>
<updated>2015-03-07T05:04:49+00:00</updated>
<author>
<name>Ian Cordasco</name>
<email>graffatcolmingov@gmail.com</email>
</author>
<published>2015-03-07T05:04:49+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/flake8.git/commit/?id=c084211e9e9c48fc40ff2c33a9a4fc69960445ea'/>
<id>c084211e9e9c48fc40ff2c33a9a4fc69960445ea</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Simplify @mpenkov's fix for exclude in git hooks</title>
<updated>2015-03-07T05:01:30+00:00</updated>
<author>
<name>Ian Cordasco</name>
<email>ian.cordasco@rackspace.com</email>
</author>
<published>2015-03-07T01:47:55+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/flake8.git/commit/?id=84c8dd5e8d192a2ed6c0555a2d00164934266ba3'/>
<id>84c8dd5e8d192a2ed6c0555a2d00164934266ba3</id>
<content type='text'>
The simpler fix is to ensure that the filename isn't the full path to
the temporary file before we check to see if it should be excluded or if
it should even match.

This also fixes a bug I found while testing the pull request in which no
files are checked.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The simpler fix is to ensure that the filename isn't the full path to
the temporary file before we check to see if it should be excluded or if
it should even match.

This also fixes a bug I found while testing the pull request in which no
files are checked.
</pre>
</div>
</content>
</entry>
<entry>
<title>WIP</title>
<updated>2015-03-07T01:47:55+00:00</updated>
<author>
<name>Ian Cordasco</name>
<email>ian.cordasco@rackspace.com</email>
</author>
<published>2015-03-07T01:47:55+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/flake8.git/commit/?id=54946334db0b72240e17e9bd63354820e6394b3f'/>
<id>54946334db0b72240e17e9bd63354820e6394b3f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Refactor some bits of flake8.hooks</title>
<updated>2015-02-23T04:29:13+00:00</updated>
<author>
<name>Ian Cordasco</name>
<email>graffatcolmingov@gmail.com</email>
</author>
<published>2015-02-23T04:29:13+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/flake8.git/commit/?id=ba344c8ded01ccbf865154315e7cb0f5472386ce'/>
<id>ba344c8ded01ccbf865154315e7cb0f5472386ce</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Use git config before os.environ</title>
<updated>2015-02-16T04:32:17+00:00</updated>
<author>
<name>Oleg Broytman</name>
<email>phd@phdru.name</email>
</author>
<published>2015-02-16T03:10:03+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/flake8.git/commit/?id=d03b5269130403d064a80d4a2b779d7e685d273b'/>
<id>d03b5269130403d064a80d4a2b779d7e685d273b</id>
<content type='text'>
Get parameter's value using git config before trying os.environ.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Get parameter's value using git config before trying os.environ.
</pre>
</div>
</content>
</entry>
<entry>
<title>Minor refactoring</title>
<updated>2015-02-16T03:09:43+00:00</updated>
<author>
<name>Oleg Broytman</name>
<email>phd@phdru.name</email>
</author>
<published>2015-02-16T03:09:43+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/flake8.git/commit/?id=4d9a88298b7b45b8bd05c3911dfbbbc280a90fa3'/>
<id>4d9a88298b7b45b8bd05c3911dfbbbc280a90fa3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Adding unit tests for fix in 218949a</title>
<updated>2015-02-07T07:33:35+00:00</updated>
<author>
<name>Michael Penkov</name>
<email>misha.penkov@gmail.com</email>
</author>
<published>2015-02-07T07:33:35+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/flake8.git/commit/?id=de9fd7d6a235bd2320b3aec323de783ac97e95c3'/>
<id>de9fd7d6a235bd2320b3aec323de783ac97e95c3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
