README.md in danger-android_lint-0.0.3 vs README.md in danger-android_lint-0.0.4

- old
+ new

@@ -56,16 +56,31 @@ ```rb android_lint.severity = "Error" android_lint.lint ``` +#### Lint only added/modified files + +If you're dealing with a legacy project, with tons of warnings, you may want to lint only new/modified files. You can easily achieve that, setting the `filtering` parameter to `true`. + +```rb +android_lint.filtering = true +android_lint.lint +``` + +#### Make Danger comment directly on the line instead of printing a Markdown table (GitHub only) + +```rb +android_lint.lint(inline_mode: true) +``` + ## Development 1. Clone this repo 2. Run `bundle install` to setup dependencies. 3. Run `bundle exec rake spec` to run the tests. 4. Use `bundle exec guard` to automatically have tests run as you make changes. 5. Make your changes. ## License -MIT +[MIT](https://raw.githubusercontent.com/loadsmart/danger-android_lint/master/LICENSE.txt)