j

jslint

JSLint takes a JavaScript source and scans it. If it finds a problem, it returns a message describing the problem and an approximate location within the source. The problem is not necessarily a syntax error, although it often is. JSLint looks at some style conventions as well as structural problems. It does not prove that your program is correct. It just provides another set of eyes to help spot problems.
http://www.jslint.com
MIT License
Douglas Crockford
文件下载
文件名 操作
jslint-2007-10-25.jar 下载
jslint-2007-10-25.pom 下载
Apache Maven
<dependency>
  <groupId>com.jslint</groupId>
  <artifactId>jslint</artifactId>
  <version>2007-10-25</version>
  <type>javascript</type>
</dependency>
Gradle Groovy
implementation 'com.jslint:jslint:2007-10-25'
Gradle Kotlin
implementation("com.jslint:jslint:2007-10-25")
Scala SBT
libraryDependencies += "com.jslint" % "jslint" % "2007-10-25"
Groovy Grape
@Grapes(
  @Grab(group='com.jslint', module='jslint', version='2007-10-25')
)
Apache Ivy
<dependency org="com.jslint" name="jslint" rev="2007-10-25" />
Leiningen
[com.jslint/jslint "2007-10-25"]
Apache Buildr
'com.jslint:jslint:jar:2007-10-25'
本项目依赖
该项目无第三方依赖