README.md in pronto-reek-0.11.0 vs README.md in pronto-reek-0.11.1
- old
+ new
@@ -8,5 +8,14 @@
Pronto runner for [Reek](https://github.com/troessner/reek), code smell detector for Ruby. [What is Pronto?](https://github.com/prontolabs/pronto)
## Configuration
Configuring Reek via [config.reek](https://github.com/troessner/reek#configuration-file), or any file ending with .reek, will work just fine with pronto-reek.
+
+You can also specify a custom severity level for the reek smells with the environment variable PRONTO_REEK_SEVERITY_LEVEL.
+
+Or if you prefer provide it on your `.pronto.yml` (environment variable has precedence over file):
+
+```yaml
+reek:
+ severity_level: warning # default is info
+```