From e6750027be693aafb7633e5c0ef1b9b86efa530a Mon Sep 17 00:00:00 2001 From: Daniel Veihelmann Date: Sun, 1 Jul 2018 18:52:38 +0200 Subject: [PATCH] Update README.md --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0003fa1..3014f86 100644 --- a/README.md +++ b/README.md @@ -3,8 +3,10 @@ A plugin which enhances IntelliJ's support for Googleâ„¢ Closure JavaScript by * checking for **missing** `goog.require` statements :eyeglasses: * checking for **obsolete** `goog.require`s :eyeglasses: -* offering quick-fixes :star2: (incl. **fix all**) for both cases -* sorting `goog.require` statements when quick fixes are invoked: +* checking for **duplicate** goog.require/goog.provide statements +* checking for usages of bracket notation (e.g. `myVar['myField']` instead of dot notation (`myVar.myField`). (The first alternative cannot be type-checked by the Closure compiler) +* offering quick-fixes :star2: (incl. **fix all**) for all of the above +* sorting `goog.require` statements automatically when quick fixes are invoked: ![Inspection GIF](https://github.com/Dan1ve/ClosureInspectionsPlugin/raw/master/images/require-fixes.gif)