Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

jshint

Package Overview
Dependencies
Maintainers
2
Versions
99
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jshint - npm Package Compare versions

Comparing version 2.1.6 to 2.1.7

2

package.json
{
"name": "jshint",
"version": "2.1.6",
"version": "2.1.7",
"homepage": "http://jshint.com/",

@@ -5,0 +5,0 @@ "description": "Static analysis tool for JavaScript",

JSHint, A Static Code Analysis Tool for JavaScript
==================================================
--------------------------------------------------
\[ [Use it online](http://jshint.com/) • [About](http://jshint.com/about/) •
[Docs](http://jshint.com/docs/) • [FAQ](http://jshint.com/docs/faq) •
[Install](http://jshint.com/install/) • [Hack](http://jshint.com/hack/) •
[Blog](http://jshint.com/blog/) • [Twitter](https://twitter.com/jshint/) \]
[![Build Status](https://travis-ci.org/jshint/jshint.png?branch=master)](https://travis-ci.org/jshint/jshint)
[![NPM version](https://badge.fury.io/js/jshint.png)](http://badge.fury.io/js/jshint)
JSHint is a community-driven tool to detect errors and potential problems in
JavaScript code and to enforce your team's coding conventions. We made JSHint
JSHint is a community-driven tool to detect errors and potential problems
in JavaScript code and to enforce your team’s coding conventions. It is
very flexible so you can easily adjust it to your particular coding guidelines
and the environment you expect your code to execute in.
Our goal is to help JavaScript developers write complex programs without
worrying about typos and language gotchas.
#### Reporting a bug
We believe that static code analysis programs—as well as other code quality
tools—are important and beneficial to the JavaScript community and, thus,
should not alienate their users.
For general usage and hacking information, visit our website:
[http://jshint.com/](http://jshint.com/).
Bug Bounties
--------------------------------
Some bugs are so important to us, we will pay you if you fix them! Go to
[our page on BountySource](https://www.bountysource.com/#trackers/48759-jshint)
to see which bugs have bounties behind them.
Really want to have something fixed but don't have time? You can add your
own bounty to any JSHint bug and make it more attractive for potential
contributors!
**Rule:** A bug is considered fixed only after it has been merged into the
master branch of the main JSHint repository.
Reporting a bug
---------------
To report a bug simply create a

@@ -51,42 +32,10 @@ [new GitHub Issue](https://github.com/jshint/jshint/issues/new) and describe

FAQ
---
#### License
#### How do I turn off "mixed tabs and spaces" warning?
If you're using so-called [smart tabs](http://www.emacswiki.org/SmartTabs)
then we have an option `smarttabs` for you. Otherwise, your solution is to
run JSHint with a custom reporter that discards any warnings you don't like.
For example, this [example reporter](https://gist.github.com/3885619)
discards all warnings about mixed tabs and spaces.
Contributing
------------
Look for a file named `CONTRIBUTING.md` in this repository. It contains our
contributing guidelines. We also have
[a mailing list](http://groups.google.com/group/jshint/).
License
-------
JSHint is distributed under the MIT License. One file and one file only
(src/stable/jshint.js) is distributed under the slightly modified MIT License.
Attribution
-----------
Core Team members:
#### Thank you!
* [Anton Kovalyov](http://anton.kovalyov.net/) ([@valueof](http://twitter.com/valueof))
* [Wolfgang Kluge](http://klugesoftware.de/) ([blog](http://gehirnwindung.de/))
* [Josh Perez](http://www.goatslacker.com/) ([@goatslacker](http://twitter.com/goatslacker))
* [Brent Lintner](http://brentlintner.heroku.com/) ([@brentlintner](http://twitter.com/brentlintner))
* [Bernard Pratz](http://i.got.nothing.to/blog/) ([@guyzmo](https://twitter.com/guyzmo))
Maintainer: Anton Kovalyov
Thank you!
----------
We really appreciate all kind of feedback and contributions. Thanks for using and supporting JSHint!

@@ -329,7 +329,8 @@ "use strict";

var files = [];
var reg = new RegExp("\\.(js" +
(opts.extensions === "" ? "" : "|" +
(!opts.extensions ? "" : "|" +
opts.extensions.replace(/,/g, "|").replace(/[\. ]/g, "")) + ")$");
var ignores = opts.ignores.map(function (target) {
var ignores = !opts.ignores ? loadIgnores() : opts.ignores.map(function (target) {
return path.resolve(target);

@@ -336,0 +337,0 @@ });

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc