eslint-config-stylelint
Advanced tools
Comparing version 11.1.0 to 12.0.0
@@ -1,72 +0,82 @@ | ||
# 11.1.0 | ||
# Changelog | ||
- Fixed: Add the `no-console` rule that was removed from `eslint/recommended` in ESLint v6. | ||
## 12.0.0 | ||
# 11.0.0 | ||
- Removed: `prefer-const`. | ||
- Changed: `ecmaVersion` to `2019`. | ||
- Changed: `eqeqeq` rule to `smart`. | ||
- Added: new rules. | ||
- Added: `eslint-config-prettier`. | ||
- Added: `eslint-plugin-eslint-comments` ESLint plugin using `eslint-comments/recommended` rules. | ||
## 11.1.0 | ||
# 10.0.0 | ||
- Fixed: Add the `no-console` rule that was removed from `eslint/recommended` in ESLint v6. | ||
- Added: `eslint-plugin-jest` ESLint plugin `jest/style` rules. | ||
## 11.0.0 | ||
# 9.0.0 | ||
- Added: `eslint-plugin-eslint-comments` ESLint plugin using `eslint-comments/recommended` rules. | ||
- Added: `jest/no-alias-methods` Jest rule. #56 | ||
- Added: `jest/prefer-to-be-null` Jest rule. #56 | ||
- Added: `jest/prefer-to-be-undefined` Jest rule. #56 | ||
- Added: `jest/prefer-to-contain` Jest rule. #56 | ||
- Added: `jest/valid-expect-in-promise` Jest rule. #56 | ||
- Added: `padding-line-between-statements` rule. #55 | ||
## 10.0.0 | ||
# 8.3.0 | ||
- Added: `eslint-plugin-jest` ESLint plugin `jest/style` rules. | ||
- Changed: `eslint-plugin-jest` rules to `error` | ||
## 9.0.0 | ||
# 8.2.0 | ||
- Added: `jest/no-alias-methods` Jest rule. #56 | ||
- Added: `jest/prefer-to-be-null` Jest rule. #56 | ||
- Added: `jest/prefer-to-be-undefined` Jest rule. #56 | ||
- Added: `jest/prefer-to-contain` Jest rule. #56 | ||
- Added: `jest/valid-expect-in-promise` Jest rule. #56 | ||
- Added: `padding-line-between-statements` rule. #55 | ||
- Added: `eslint-plugin-jest` ESLint plugin. | ||
## 8.3.0 | ||
# 8.1.0 | ||
- Changed: `eslint-plugin-jest` rules to `error` | ||
- Added: `one-var` rule. | ||
## 8.2.0 | ||
# 8.0.0 | ||
- Added: `eslint-plugin-jest` ESLint plugin. | ||
- Added: `eslint-plugin-node` ESLint plugin using `node/recommended` rules. | ||
## 8.1.0 | ||
# 7.0.0 | ||
- Added: `one-var` rule. | ||
- Removed: stylistic rules. | ||
- Added: eslint `4.0.0` compatibility. | ||
## 8.0.0 | ||
# 6.0.0 | ||
- Added: `eslint-plugin-node` ESLint plugin using `node/recommended` rules. | ||
- Added: rules and parse options for `node@4` compatibility. | ||
- Removed: `spaced-comment` rules to support flow. | ||
## 7.0.0 | ||
# 5.0.0 | ||
- Removed: stylistic rules. | ||
- Added: eslint `4.0.0` compatibility. | ||
- Added: `padded-blocks` rule. | ||
## 6.0.0 | ||
# 4.0.0 | ||
- Added: rules and parse options for `node@4` compatibility. | ||
- Removed: `spaced-comment` rules to support flow. | ||
- Added: `no-multi-spaces` rule. | ||
## 5.0.0 | ||
# 3.0.0 | ||
- Added: `padded-blocks` rule. | ||
- Added: eslint `3.0.0` compatibility. | ||
- Removed: eslint `2.0.0` compatibility. | ||
## 4.0.0 | ||
# 2.0.0 | ||
- Added: `no-multi-spaces` rule. | ||
- Added: rules for consistent whitespace. | ||
## 3.0.0 | ||
# 1.0.0 | ||
- Added: eslint `3.0.0` compatibility. | ||
- Removed: eslint `2.0.0` compatibility. | ||
- Added: eslint `2.0` compatibility. | ||
- Removed: eslint `1.0` compatibility. | ||
## 2.0.0 | ||
# 0.1.0 | ||
- Added: rules for consistent whitespace. | ||
- Initial release. | ||
## 1.0.0 | ||
- Added: eslint `2.0` compatibility. | ||
- Removed: eslint `1.0` compatibility. | ||
## 0.1.0 | ||
- Initial release. |
@@ -1,3 +0,3 @@ | ||
"use strict" | ||
"use strict"; | ||
module.exports = require("./eslintrc.js") | ||
module.exports = require("./.eslintrc.js"); |
{ | ||
"name": "eslint-config-stylelint", | ||
"version": "11.1.0", | ||
"version": "12.0.0", | ||
"description": "stylelint org's shareable config for eslint", | ||
@@ -11,35 +11,31 @@ "keywords": [ | ||
"license": "MIT", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/stylelint/eslint-config-stylelint.git" | ||
}, | ||
"homepage": "https://github.com/stylelint/eslint-config-stylelint", | ||
"bugs": "https://github.com/stylelint/eslint-config-stylelint/issues", | ||
"repository": "stylelint/eslint-config-stylelint", | ||
"main": "index.js", | ||
"files": [ | ||
"eslintrc.js", | ||
"index.js" | ||
".eslintrc.js" | ||
], | ||
"engines": { | ||
"node": ">=8.7.0" | ||
"node": ">=10.0.0" | ||
}, | ||
"devDependencies": { | ||
"eslint": "^6.1.0", | ||
"jest": "^24.8.0", | ||
"npmpub": "^4.1.0" | ||
"eslint": "^6.8.0", | ||
"jest": "^25.2.7", | ||
"np": "^6.2.0" | ||
}, | ||
"scripts": { | ||
"dry-release": "npmpub --dry --verbose", | ||
"jest": "jest", | ||
"lint": "eslint -c eslintrc.js .", | ||
"release": "npmpub", | ||
"test": "npm run lint && npm run jest", | ||
"lint": "eslint .", | ||
"release": "np", | ||
"test": "jest", | ||
"watch": "jest --watch" | ||
}, | ||
"dependencies": { | ||
"eslint-config-prettier": "^6.10.1", | ||
"eslint-plugin-eslint-comments": "^3.1.2", | ||
"eslint-plugin-jest": "^22.15.0", | ||
"eslint-plugin-node": "^9.1.0", | ||
"eslint-plugin-jest": "^23.8.2", | ||
"eslint-plugin-node": "^11.1.0", | ||
"eslint-plugin-sort-requires": "^2.1.0" | ||
}, | ||
"publishConfig": { | ||
"access": "public" | ||
} | ||
} |
# eslint-config-stylelint | ||
[![NPM version](http://img.shields.io/npm/v/eslint-config-stylelint.svg)](https://www.npmjs.org/package/eslint-config-stylelint) [![Build Status](https://travis-ci.com/stylelint/eslint-config-stylelint.svg?branch=master)](https://travis-ci.com/stylelint/eslint-config-stylelint) | ||
> stylelint org's shareable config for eslint. | ||
[![NPM version](https://img.shields.io/npm/v/eslint-config-stylelint.svg)](https://www.npmjs.org/package/eslint-config-stylelint) [![Build Status](https://github.com/stylelint/eslint-config-stylelint/workflows/CI/badge.svg)](https://github.com/stylelint/eslint-config-stylelint/actions) | ||
For consistent JavaScript code across stylelint's repos. | ||
> stylelint org's shareable config for ESLint. | ||
For consistent JavaScript across stylelint's repos. | ||
## Installation | ||
```console | ||
$ npm install eslint-config-stylelint | ||
$ npm install eslint-config-stylelint --save-dev | ||
``` | ||
@@ -16,10 +17,12 @@ | ||
Add this to your .eslintrc file: | ||
Add this to your `package.json`: | ||
```yaml | ||
extends: 'stylelint' | ||
```json | ||
{ | ||
"eslintConfig": { | ||
"extends": ["stylelint"] | ||
} | ||
} | ||
``` | ||
## [Changelog](CHANGELOG.md) | ||
## [License](LICENSE) |
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
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
No bug tracker
MaintenancePackage does not have a linked bug tracker in package.json.
Found 1 instance in 1 package
No repository
Supply chain riskPackage does not have a linked source code repository. Without this field, a package will have no reference to the location of the source code use to generate the package.
Found 1 instance in 1 package
No website
QualityPackage does not have a website.
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
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
7349
127
28
5
1
1
+ Added@typescript-eslint/experimental-utils@2.34.0(transitive)
+ Added@typescript-eslint/typescript-estree@2.34.0(transitive)
+ Addedeslint-config-prettier@6.15.0(transitive)
+ Addedeslint-plugin-es@3.0.1(transitive)
+ Addedeslint-plugin-jest@23.20.0(transitive)
+ Addedeslint-plugin-node@11.1.0(transitive)
+ Addedeslint-scope@5.1.1(transitive)
+ Addedeslint-utils@2.1.0(transitive)
+ Addedfs.realpath@1.0.0(transitive)
+ Addedget-stdin@6.0.0(transitive)
+ Addedglob@7.2.3(transitive)
+ Addedinflight@1.0.6(transitive)
+ Addedinherits@2.0.4(transitive)
+ Addedlodash@4.17.21(transitive)
+ Addedonce@1.4.0(transitive)
+ Addedpath-is-absolute@1.0.1(transitive)
+ Addedregexpp@3.2.0(transitive)
+ Addedsemver@7.6.3(transitive)
+ Addedtslib@1.14.1(transitive)
+ Addedtsutils@3.21.0(transitive)
+ Addedtypescript@5.7.2(transitive)
+ Addedwrappy@1.0.2(transitive)
- Removed@typescript-eslint/experimental-utils@1.13.0(transitive)
- Removed@typescript-eslint/typescript-estree@1.13.0(transitive)
- Removedeslint-plugin-es@1.4.1(transitive)
- Removedeslint-plugin-jest@22.21.0(transitive)
- Removedeslint-plugin-node@9.2.0(transitive)
- Removedeslint-scope@4.0.3(transitive)
- Removedeslint-utils@1.4.3(transitive)
- Removedlodash.unescape@4.0.1(transitive)
- Removedregexpp@2.0.1(transitive)
- Removedsemver@5.5.0(transitive)
Updatedeslint-plugin-jest@^23.8.2
Updatedeslint-plugin-node@^11.1.0