Update description about autopep8.  Closes #83
diff --git a/README.md b/README.md
index 65e8617..8148cee 100644
--- a/README.md
+++ b/README.md
@@ -24,8 +24,8 @@
 ### Hooks available
 
 - `autopep8-wrapper` - Runs autopep8 over python source.
-    - Ignore PEP 8 violation types with `args: ['-i', '--ignore=E000,...']`,
-      see `.pre-commit-config.yaml` in this repository for an example.
+    - Ignore PEP 8 violation types with `args: ['-i', '--ignore=E000,...']` or
+      through configuration of the `[pep8]` section in setup.cfg / tox.ini.
 - `check-added-large-files` - Prevent giant files from being committed.
     - Specify what is "too large" with `args: ['--maxkb=123']` (default=500kB).
 - `check-ast` - Simply check whether files parse as valid python.