Skip to content

Commit

Permalink
add example for pylintrc
Browse files Browse the repository at this point in the history
  • Loading branch information
edaniszewski committed Jul 5, 2018
1 parent 9f719f6 commit bc7b0bd
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 1 deletion.
Empty file added example/package/__init__.py
Empty file.
12 changes: 12 additions & 0 deletions example/package/example.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
"""Example python file."""


def main(output="default"):
'''Entrypoint to the example script which prints out the
value in the 'output' variable.
'''
print(output)


if __name__ == "__main__":
main('testing')
3 changes: 3 additions & 0 deletions example/pylintrc.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[MASTER]

load-plugins=pylint_quotes
2 changes: 1 addition & 1 deletion pylint_quotes/__version__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
__title__ = 'pylint-quotes'
__description__ = 'Quote consistency checker for PyLint..'
__url__ = 'https://github.com/edaniszewski/pylint-quotes'
__version__ = '0.1.9'
__version__ = '0.1.10'
__author__ = 'Erick Daniszewski'
__author_email__ = 'edaniszewski@gmail.com'
__license__ = 'MIT'
Expand Down

0 comments on commit bc7b0bd

Please sign in to comment.