c

closure-compiler-linter

Closure Compiler is a JavaScript optimizing compiler. It parses your JavaScript, analyzes it, removes dead code and rewrites and minimizes what's left. It also checks syntax, variable references, and types, and warns about common JavaScript pitfalls. It is used in many of Google's JavaScript apps, including Gmail, Google Web Search, Google Maps, and Google Docs. This binary checks for style issues such as incorrect or missing JSDoc usage, and missing goog.require() statements. It does not do more advanced checks such as typechecking.
https://developers.google.com/closure/compiler/
Files download
File Operation
closure-compiler-linter-v20200830.jar download
closure-compiler-linter-v20200830.pom download
closure-compiler-linter-v20200830-sources.jar download
Apache Maven
<dependency>
  <groupId>com.google.javascript</groupId>
  <artifactId>closure-compiler-linter</artifactId>
  <version>v20200830</version>
</dependency>
Gradle Groovy
implementation 'com.google.javascript:closure-compiler-linter:v20200830'
Gradle Kotlin
implementation("com.google.javascript:closure-compiler-linter:v20200830")
Scala SBT
libraryDependencies += "com.google.javascript" % "closure-compiler-linter" % "v20200830"
Groovy Grape
@Grapes(
  @Grab(group='com.google.javascript', module='closure-compiler-linter', version='v20200830')
)
Apache Ivy
<dependency org="com.google.javascript" name="closure-compiler-linter" rev="v20200830" />
Leiningen
[com.google.javascript/closure-compiler-linter "v20200830"]
Apache Buildr
'com.google.javascript:closure-compiler-linter:jar:v20200830'