Add example configuration sections to the docs

Add tests to verify our examples do not regress
This commit is contained in:
Ian Cordasco 2016-05-28 12:00:47 -05:00
parent 91e07ebcff
commit 466ef2e596
4 changed files with 189 additions and 1 deletions

View file

@ -0,0 +1,16 @@
[flake8]
# This is a flake8 config, there are many like it, but this is mine
ignore =
# Disable E123
E123,
# Disable W234
W234,
# Also disable E111
E111
exclude =
# Exclude foo/
foo/,
# Exclude bar/ while we're at it
bar/,
# Exclude bogus/
bogus/

View file

@ -0,0 +1,16 @@
[flake8]
# This is a flake8 config, there are many like it, but this is mine
# Disable E123
# Disable W234
# Also disable E111
ignore =
E123,
W234,
E111
# Exclude foo/
# Exclude bar/ while we're at it
# Exclude bogus/
exclude =
foo/,
bar/,
bogus/