eslint-config-stylelint
Advanced tools
Comparing version 5.0.0 to 6.0.0
@@ -0,25 +1,30 @@ | ||
# 6.0.0 | ||
- Added: rules and parse options for `node@4` compatibility. | ||
- Removed: `spaced-comment` rules to support flow. | ||
# 5.0.0 | ||
* Added: `padded-blocks` rule. | ||
- Added: `padded-blocks` rule. | ||
# 4.0.0 | ||
* Added: `no-multi-spaces` rule. | ||
- Added: `no-multi-spaces` rule. | ||
# 3.0.0 | ||
* Added: eslint `3.0.0` compatibility. | ||
* Removed: eslint `2.0.0` compatibility. | ||
- Added: eslint `3.0.0` compatibility. | ||
- Removed: eslint `2.0.0` compatibility. | ||
# 2.0.0 | ||
* Added: rules for consistent whitespace. | ||
- Added: rules for consistent whitespace. | ||
# 1.0.0 | ||
* Added: eslint `2.0` compatibility. | ||
* Removed: eslint `1.0` compatibility. | ||
- Added: eslint `2.0` compatibility. | ||
- Removed: eslint `1.0` compatibility. | ||
# 0.1.0 | ||
* Initial release. | ||
- Initial release. |
{ | ||
"extends": "eslint:recommended", | ||
"parserOptions": { | ||
"sourceType": "module" | ||
"ecmaVersion": 6 | ||
}, | ||
"env": { | ||
"es6": true, | ||
"jest": true, | ||
"node": true | ||
@@ -14,2 +15,3 @@ }, | ||
} ], | ||
"arrow-spacing": 2, | ||
"block-spacing": 2, | ||
@@ -33,5 +35,8 @@ "comma-dangle": [ 2, "always-multiline" ], | ||
"no-use-before-define": [ 2, "nofunc" ], | ||
"no-var": 2, | ||
"no-whitespace-before-property": 2, | ||
"object-curly-spacing": [2, "always"], | ||
"object-shorthand": 2, | ||
"padded-blocks": [2, "never"], | ||
"prefer-const": 2, | ||
"quotes": [ 2, "double" ], | ||
@@ -47,4 +52,5 @@ "semi": [ 2, "never" ], | ||
"space-unary-ops": 2, | ||
"spaced-comment": [ 2, "always" ] | ||
"strict": ["error", "global"], | ||
"template-curly-spacing": 2 | ||
} | ||
} |
@@ -0,1 +1,3 @@ | ||
"use strict" | ||
module.exports = require("./eslintrc.json") |
{ | ||
"name": "eslint-config-stylelint", | ||
"version": "5.0.0", | ||
"version": "6.0.0", | ||
"description": "stylelint org's shareable config for eslint", | ||
@@ -27,11 +27,12 @@ "keywords": [ | ||
"eslint": "^3.0.0", | ||
"npmpub": "^3.0.3", | ||
"tape": "^4.4.0" | ||
"jest": "^17.0.3", | ||
"npmpub": "^3.0.3" | ||
}, | ||
"scripts": { | ||
"jest": "jest", | ||
"lint": "eslint -c eslintrc.json .", | ||
"tape": "tape \"__tests__/**/*.js\"", | ||
"test": "npm run lint && npm run tape", | ||
"release": "npmpub" | ||
"release": "npmpub", | ||
"test": "npm run lint && npm run jest", | ||
"watch": "jest --watch" | ||
} | ||
} |
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
4422
55