summaryrefslogtreecommitdiff
path: root/git/config.py
Commit message (Collapse)AuthorAgeFilesLines
...
* pep8 linting (trailing whitespace)Antoine Musso2014-11-161-23/+23
| | | | W291 trailing whitespace
* pep8 linting (whitespace before/after)Antoine Musso2014-11-161-15/+15
| | | | | | | | | | | | | E201 whitespace after '(' E202 whitespace before ')' E203 whitespace before ':' E225 missing whitespace around operator E226 missing whitespace around arithmetic operator E227 missing whitespace around bitwise or shift operator E228 missing whitespace around modulo operator E231 missing whitespace after ',' E241 multiple spaces after ',' E251 unexpected spaces around keyword / parameter equals
* pep8 linting (blank lines expectations)Antoine Musso2014-11-161-5/+7
| | | | | | E301 expected 1 blank line, found 0 E302 expected 2 blank lines, found 1 E303 too many blank lines (n)
* pep8 linting (whitespaces)Antoine Musso2014-11-161-63/+63
| | | | | | | | | | | W191 indentation contains tabs E221 multiple spaces before operator E222 multiple spaces after operator E225 missing whitespace around operator E271 multiple spaces after keyword W292 no newline at end of file W293 blank line contains whitespace W391 blank line at end of file
* tabs to 4 spaces - this won't make integrating the patches easier, but it's ↵Sebastian Thiel2014-02-091-395/+395
| | | | probably a good idea to go a little more pep8 (and fix sins of my youth ;) )
* Greatly improved robustness of config parser - it can now take pretty much ↵Sebastian Thiel2011-06-071-3/+8
| | | | everything. Includes an updated config file which includes all the new additions
* Match any number of leading spaces in config valuesJesse Keating2011-05-221-1/+1
| | | | | | The regex comments state that any number of leading tabs or spaces should be allowed, however the regex was only catching zero or one space. This allows multiple spaces.
* Moved everything into the git subdirectory - some tests still need to be ↵Sebastian Thiel2010-11-251-0/+420
adjusted