├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── README.md ├── config ├── karma.sauce.conf.js ├── karma.travis.conf.js └── protractor.travis.conf.js ├── dist └── hint.js ├── e2e ├── _unused │ ├── app.css │ ├── broken-example.html │ ├── correct-example.html │ ├── manual-bootstrap-alternative.html │ ├── manual-bootstrap.html │ └── profile.html ├── all-hint │ └── index.html ├── exclude-wrong-module-name │ ├── exclude-wrong-module-name.spec.js │ └── index.html ├── exclusive-hint │ └── index.html ├── hint.spec.js ├── include-wrong-module-name │ ├── include-wrong-module-name.spec.js │ └── index.html ├── inclusive-hint │ └── index.html ├── no-hint │ └── index.html ├── util.js └── util.protractor.js ├── gulpfile.js ├── hint.js ├── karma.conf.js ├── package.json ├── protractor.conf.js ├── scripts ├── dev-dep.sh ├── npm-dep.sh ├── npm-install.sh ├── print_logs.sh ├── read-pkg-url.js ├── sauce_connect_setup.sh ├── test_on_sauce.sh └── wait_for_browser_provider.sh ├── src ├── lib │ ├── addSuggestions.js │ ├── consts.js │ ├── debug-parse.js │ ├── event-directives.js │ └── summarize-model.js └── modules │ ├── angular-hint-modules │ ├── display.js │ ├── formatMultiLoaded.js │ ├── getModule.js │ ├── getNgAppMod.js │ ├── getUndeclaredModules.js │ ├── getUnusedModules.js │ ├── hasNameSpace.js │ ├── inAttrsOrClasses.js │ ├── moduleData.js │ ├── ngViewNoNgRoute.js │ ├── normalizeAttribute.js │ ├── start.js │ ├── storeDependencies.js │ ├── storeNgAppAndView.js │ └── storeUsedModules.js │ ├── controllers.js │ ├── events.js │ ├── hintEmitter.js │ ├── modules.js │ └── scopes.js ├── test ├── controllers.spec.js ├── events.spec.js ├── getModule.spec.js ├── getNgAppMod.spec.js ├── getUndeclaredModules.spec.js ├── getUnusedModules.spec.js ├── hasNameSpace.spec.js ├── inAttrsOrClasses.spec.js ├── modules.spec.js ├── normalizeAttribute.spec.js └── scopes.spec.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/angular-hint/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/angular-hint/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/angular-hint/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/angular-hint/HEAD/README.md -------------------------------------------------------------------------------- /config/karma.sauce.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/angular-hint/HEAD/config/karma.sauce.conf.js -------------------------------------------------------------------------------- /config/karma.travis.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/angular-hint/HEAD/config/karma.travis.conf.js -------------------------------------------------------------------------------- /config/protractor.travis.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/angular-hint/HEAD/config/protractor.travis.conf.js -------------------------------------------------------------------------------- /dist/hint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/angular-hint/HEAD/dist/hint.js -------------------------------------------------------------------------------- /e2e/_unused/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/angular-hint/HEAD/e2e/_unused/app.css -------------------------------------------------------------------------------- /e2e/_unused/broken-example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/angular-hint/HEAD/e2e/_unused/broken-example.html -------------------------------------------------------------------------------- /e2e/_unused/correct-example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/angular-hint/HEAD/e2e/_unused/correct-example.html -------------------------------------------------------------------------------- /e2e/_unused/manual-bootstrap-alternative.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/angular-hint/HEAD/e2e/_unused/manual-bootstrap-alternative.html -------------------------------------------------------------------------------- /e2e/_unused/manual-bootstrap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/angular-hint/HEAD/e2e/_unused/manual-bootstrap.html -------------------------------------------------------------------------------- /e2e/_unused/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/angular-hint/HEAD/e2e/_unused/profile.html -------------------------------------------------------------------------------- /e2e/all-hint/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/angular-hint/HEAD/e2e/all-hint/index.html -------------------------------------------------------------------------------- /e2e/exclude-wrong-module-name/exclude-wrong-module-name.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/angular-hint/HEAD/e2e/exclude-wrong-module-name/exclude-wrong-module-name.spec.js -------------------------------------------------------------------------------- /e2e/exclude-wrong-module-name/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/angular-hint/HEAD/e2e/exclude-wrong-module-name/index.html -------------------------------------------------------------------------------- /e2e/exclusive-hint/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/angular-hint/HEAD/e2e/exclusive-hint/index.html -------------------------------------------------------------------------------- /e2e/hint.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/angular-hint/HEAD/e2e/hint.spec.js -------------------------------------------------------------------------------- /e2e/include-wrong-module-name/include-wrong-module-name.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/angular-hint/HEAD/e2e/include-wrong-module-name/include-wrong-module-name.spec.js -------------------------------------------------------------------------------- /e2e/include-wrong-module-name/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/angular-hint/HEAD/e2e/include-wrong-module-name/index.html -------------------------------------------------------------------------------- /e2e/inclusive-hint/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/angular-hint/HEAD/e2e/inclusive-hint/index.html -------------------------------------------------------------------------------- /e2e/no-hint/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/angular-hint/HEAD/e2e/no-hint/index.html -------------------------------------------------------------------------------- /e2e/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/angular-hint/HEAD/e2e/util.js -------------------------------------------------------------------------------- /e2e/util.protractor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/angular-hint/HEAD/e2e/util.protractor.js -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/angular-hint/HEAD/gulpfile.js -------------------------------------------------------------------------------- /hint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/angular-hint/HEAD/hint.js -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/angular-hint/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/angular-hint/HEAD/package.json -------------------------------------------------------------------------------- /protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/angular-hint/HEAD/protractor.conf.js -------------------------------------------------------------------------------- /scripts/dev-dep.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/angular-hint/HEAD/scripts/dev-dep.sh -------------------------------------------------------------------------------- /scripts/npm-dep.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/angular-hint/HEAD/scripts/npm-dep.sh -------------------------------------------------------------------------------- /scripts/npm-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/angular-hint/HEAD/scripts/npm-install.sh -------------------------------------------------------------------------------- /scripts/print_logs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/angular-hint/HEAD/scripts/print_logs.sh -------------------------------------------------------------------------------- /scripts/read-pkg-url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/angular-hint/HEAD/scripts/read-pkg-url.js -------------------------------------------------------------------------------- /scripts/sauce_connect_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/angular-hint/HEAD/scripts/sauce_connect_setup.sh -------------------------------------------------------------------------------- /scripts/test_on_sauce.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/angular-hint/HEAD/scripts/test_on_sauce.sh -------------------------------------------------------------------------------- /scripts/wait_for_browser_provider.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/angular-hint/HEAD/scripts/wait_for_browser_provider.sh -------------------------------------------------------------------------------- /src/lib/addSuggestions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/angular-hint/HEAD/src/lib/addSuggestions.js -------------------------------------------------------------------------------- /src/lib/consts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/angular-hint/HEAD/src/lib/consts.js -------------------------------------------------------------------------------- /src/lib/debug-parse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/angular-hint/HEAD/src/lib/debug-parse.js -------------------------------------------------------------------------------- /src/lib/event-directives.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/angular-hint/HEAD/src/lib/event-directives.js -------------------------------------------------------------------------------- /src/lib/summarize-model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/angular-hint/HEAD/src/lib/summarize-model.js -------------------------------------------------------------------------------- /src/modules/angular-hint-modules/display.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/angular-hint/HEAD/src/modules/angular-hint-modules/display.js -------------------------------------------------------------------------------- /src/modules/angular-hint-modules/formatMultiLoaded.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/angular-hint/HEAD/src/modules/angular-hint-modules/formatMultiLoaded.js -------------------------------------------------------------------------------- /src/modules/angular-hint-modules/getModule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/angular-hint/HEAD/src/modules/angular-hint-modules/getModule.js -------------------------------------------------------------------------------- /src/modules/angular-hint-modules/getNgAppMod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/angular-hint/HEAD/src/modules/angular-hint-modules/getNgAppMod.js -------------------------------------------------------------------------------- /src/modules/angular-hint-modules/getUndeclaredModules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/angular-hint/HEAD/src/modules/angular-hint-modules/getUndeclaredModules.js -------------------------------------------------------------------------------- /src/modules/angular-hint-modules/getUnusedModules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/angular-hint/HEAD/src/modules/angular-hint-modules/getUnusedModules.js -------------------------------------------------------------------------------- /src/modules/angular-hint-modules/hasNameSpace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/angular-hint/HEAD/src/modules/angular-hint-modules/hasNameSpace.js -------------------------------------------------------------------------------- /src/modules/angular-hint-modules/inAttrsOrClasses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/angular-hint/HEAD/src/modules/angular-hint-modules/inAttrsOrClasses.js -------------------------------------------------------------------------------- /src/modules/angular-hint-modules/moduleData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/angular-hint/HEAD/src/modules/angular-hint-modules/moduleData.js -------------------------------------------------------------------------------- /src/modules/angular-hint-modules/ngViewNoNgRoute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/angular-hint/HEAD/src/modules/angular-hint-modules/ngViewNoNgRoute.js -------------------------------------------------------------------------------- /src/modules/angular-hint-modules/normalizeAttribute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/angular-hint/HEAD/src/modules/angular-hint-modules/normalizeAttribute.js -------------------------------------------------------------------------------- /src/modules/angular-hint-modules/start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/angular-hint/HEAD/src/modules/angular-hint-modules/start.js -------------------------------------------------------------------------------- /src/modules/angular-hint-modules/storeDependencies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/angular-hint/HEAD/src/modules/angular-hint-modules/storeDependencies.js -------------------------------------------------------------------------------- /src/modules/angular-hint-modules/storeNgAppAndView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/angular-hint/HEAD/src/modules/angular-hint-modules/storeNgAppAndView.js -------------------------------------------------------------------------------- /src/modules/angular-hint-modules/storeUsedModules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/angular-hint/HEAD/src/modules/angular-hint-modules/storeUsedModules.js -------------------------------------------------------------------------------- /src/modules/controllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/angular-hint/HEAD/src/modules/controllers.js -------------------------------------------------------------------------------- /src/modules/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/angular-hint/HEAD/src/modules/events.js -------------------------------------------------------------------------------- /src/modules/hintEmitter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/angular-hint/HEAD/src/modules/hintEmitter.js -------------------------------------------------------------------------------- /src/modules/modules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/angular-hint/HEAD/src/modules/modules.js -------------------------------------------------------------------------------- /src/modules/scopes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/angular-hint/HEAD/src/modules/scopes.js -------------------------------------------------------------------------------- /test/controllers.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/angular-hint/HEAD/test/controllers.spec.js -------------------------------------------------------------------------------- /test/events.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/angular-hint/HEAD/test/events.spec.js -------------------------------------------------------------------------------- /test/getModule.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/angular-hint/HEAD/test/getModule.spec.js -------------------------------------------------------------------------------- /test/getNgAppMod.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/angular-hint/HEAD/test/getNgAppMod.spec.js -------------------------------------------------------------------------------- /test/getUndeclaredModules.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/angular-hint/HEAD/test/getUndeclaredModules.spec.js -------------------------------------------------------------------------------- /test/getUnusedModules.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/angular-hint/HEAD/test/getUnusedModules.spec.js -------------------------------------------------------------------------------- /test/hasNameSpace.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/angular-hint/HEAD/test/hasNameSpace.spec.js -------------------------------------------------------------------------------- /test/inAttrsOrClasses.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/angular-hint/HEAD/test/inAttrsOrClasses.spec.js -------------------------------------------------------------------------------- /test/modules.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/angular-hint/HEAD/test/modules.spec.js -------------------------------------------------------------------------------- /test/normalizeAttribute.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/angular-hint/HEAD/test/normalizeAttribute.spec.js -------------------------------------------------------------------------------- /test/scopes.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/angular-hint/HEAD/test/scopes.spec.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/angular/angular-hint/HEAD/yarn.lock --------------------------------------------------------------------------------