Skip to content

Commit

Permalink
v2.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jugglinmike committed Aug 2, 2020
1 parent d65513c commit a9dbe4f
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 17 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,10 @@
<a name="2.12.0"></a>
# [2.12.0](https://github.com/jshint/jshint/compare/2.11.2...v2.12.0) (2020-08-02)

### Features

* Update project license ([2445143](https://github.com/jshint/jshint/commit/2445143))

<a name="2.11.2"></a>
## [2.11.2](https://github.com/jshint/jshint/compare/2.11.1...v2.11.2) (2020-07-30)

Expand Down
14 changes: 6 additions & 8 deletions dist/jshint-rhino.js
@@ -1,6 +1,6 @@
#!/usr/bin/env rhino
var window = {};
/*! 2.11.2 */
/*! 2.12.0 */
var JSHINT;
if (typeof window === 'undefined') window = {};
(function () {
Expand Down Expand Up @@ -24693,8 +24693,9 @@ exports.jasmine = {
/*!
* JSHint, by JSHint Community.
*
* This file (and this file only) is licensed under the same slightly modified
* MIT license that JSLint is. It stops evil-doers everywhere:
* Licensed under the MIT license.
*
* JSHint is a derivative work of JSLint:
*
* Copyright (c) 2002 Douglas Crockford (www.JSLint.com)
*
Expand All @@ -24708,8 +24709,6 @@ exports.jasmine = {
* The above copyright notice and this permission notice shall be included
* in all copies or substantial portions of the Software.
*
* The Software shall be used for Good, not Evil.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
Expand Down Expand Up @@ -27118,13 +27117,12 @@ var JSHINT = (function() {
return that;
}, 30);

var orPrecendence = 40;
infix("||", function(context, left, that) {
increaseComplexityCount();
that.left = left;
that.right = expression(context, orPrecendence);
that.right = expression(context, 40);
return that;
}, orPrecendence);
}, 40);

var andPrecedence = 50;
infix("&&", function(context, left, that) {
Expand Down
14 changes: 6 additions & 8 deletions dist/jshint.js
@@ -1,4 +1,4 @@
/*! 2.11.2 */
/*! 2.12.0 */
var JSHINT;
if (typeof window === 'undefined') window = {};
(function () {
Expand Down Expand Up @@ -24691,8 +24691,9 @@ exports.jasmine = {
/*!
* JSHint, by JSHint Community.
*
* This file (and this file only) is licensed under the same slightly modified
* MIT license that JSLint is. It stops evil-doers everywhere:
* Licensed under the MIT license.
*
* JSHint is a derivative work of JSLint:
*
* Copyright (c) 2002 Douglas Crockford (www.JSLint.com)
*
Expand All @@ -24706,8 +24707,6 @@ exports.jasmine = {
* The above copyright notice and this permission notice shall be included
* in all copies or substantial portions of the Software.
*
* The Software shall be used for Good, not Evil.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
Expand Down Expand Up @@ -27116,13 +27115,12 @@ var JSHINT = (function() {
return that;
}, 30);

var orPrecendence = 40;
infix("||", function(context, left, that) {
increaseComplexityCount();
that.left = left;
that.right = expression(context, orPrecendence);
that.right = expression(context, 40);
return that;
}, orPrecendence);
}, 40);

var andPrecedence = 50;
infix("&&", function(context, left, that) {
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "jshint",
"version": "2.11.2",
"version": "2.12.0",
"homepage": "http://jshint.com/",
"description": "Static analysis tool for JavaScript",
"author": {
Expand Down

0 comments on commit a9dbe4f

Please sign in to comment.