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

eslint-config-stylelint

Package Overview
Dependencies
Maintainers
3
Versions
35
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eslint-config-stylelint - npm Package Compare versions

Comparing version 11.1.0 to 12.0.0

.eslintrc.js

92

CHANGELOG.md

@@ -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

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