Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update requirements in readme and add syntax highlighting #59

Merged
merged 2 commits into from Mar 23, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 7 additions & 3 deletions README.rst
Expand Up @@ -10,7 +10,9 @@ Flake8 Builtins plugin
======================
Check for python builtins being used as variables or parameters.

Imagine some code like this::
Imagine some code like this:

.. code:: Python

def max_values(list, list2):
max = list[0]
Expand Down Expand Up @@ -47,7 +49,9 @@ the general approach is to **not** do that as code then can suddenly break witho

Example
-------
Given the following code::
Given the following code:

.. code:: Python

def my_method(object, list, dict):
max = 5
Expand All @@ -71,7 +75,7 @@ Install with pip::

Requirements
------------
- Python 2.7, 3.5, 3.6
- Python 2.7, 3.6, 3.7, 3.8
- flake8

License
Expand Down