@eslint/js
Advanced tools
Comparing version 8.33.0 to 8.34.0
{ | ||
"name": "@eslint/js", | ||
"version": "8.33.0", | ||
"version": "8.34.0", | ||
"description": "ESLint JavaScript language implementation", | ||
"main": "./src/index.js", | ||
"scripts": { | ||
}, | ||
"scripts": {}, | ||
"files": [ | ||
@@ -18,3 +17,4 @@ "LICENSE", | ||
"type": "git", | ||
"url": "https://github.com/eslint/eslint" | ||
"url": "https://github.com/eslint/eslint.git", | ||
"directory": "packages/js" | ||
}, | ||
@@ -30,4 +30,4 @@ "homepage": "https://eslint.org", | ||
"engines": { | ||
"node": "^10.12.0 || >=12.0.0" | ||
"node": "^12.22.0 || ^14.17.0 || >=16.0.0" | ||
} | ||
} |
@@ -1,2 +0,2 @@ | ||
[![npm version][npm-image]][npm-url] | ||
[![npm version](https://img.shields.io/npm/v/@eslint/js.svg)](https://www.npmjs.com/package/@eslint/js) | ||
@@ -32,3 +32,3 @@ # ESLint JavaScript Plugin | ||
files: ["**/*.js"], | ||
rules: js.configs.recommended | ||
rules: js.configs.recommended.rules | ||
}, | ||
@@ -40,3 +40,3 @@ | ||
rules: { | ||
...js.configs.recommended | ||
...js.configs.recommended.rules, | ||
"no-unused-vars": "warn" | ||
@@ -50,3 +50,3 @@ } | ||
rules: { | ||
...js.configs.all | ||
...js.configs.all.rules, | ||
"no-unused-vars": "warn" | ||
@@ -53,0 +53,0 @@ } |
@@ -13,3 +13,3 @@ /** | ||
module.exports = Object.freeze({ | ||
rules: { | ||
rules: Object.freeze({ | ||
"constructor-super": "error", | ||
@@ -76,3 +76,3 @@ "for-direction": "error", | ||
"valid-typeof": "error" | ||
} | ||
}) | ||
}); |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
16473