eslint-config-stylelint
Advanced tools
Comparing version 6.0.0 to 7.0.0
@@ -0,1 +1,6 @@ | ||
# 7.0.0 | ||
- Removed: stylistic rules. | ||
- Added: eslint `4.0.0` compatibility. | ||
# 6.0.0 | ||
@@ -2,0 +7,0 @@ |
@@ -11,44 +11,14 @@ { | ||
}, | ||
"plugins": [ | ||
"sort-requires" | ||
], | ||
"rules": { | ||
"array-bracket-spacing": [2, "always", { | ||
"singleValue": false | ||
} ], | ||
"arrow-spacing": 2, | ||
"block-spacing": 2, | ||
"comma-dangle": [ 2, "always-multiline" ], | ||
"comma-spacing": 2, | ||
"comma-style": [ 2, "last" ], | ||
"eol-last": 2, | ||
"indent": [ 2, 2, { | ||
"SwitchCase": 1 | ||
} ], | ||
"keyword-spacing": 2, | ||
"linebreak-style": 2, | ||
"no-console": 2, | ||
"no-mixed-spaces-and-tabs": 2, | ||
"no-multi-spaces": 2, | ||
"no-multiple-empty-lines": [ 2, { | ||
"max": 1 | ||
} ], | ||
"no-trailing-spaces": 2, | ||
"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" ], | ||
"semi": [ 2, "never" ], | ||
"space-before-blocks": [ 2, "always" ], | ||
"space-before-function-paren": [ 2, { | ||
"anonymous": "always", | ||
"named": "never" | ||
} ], | ||
"space-in-parens": [ 2, "never" ], | ||
"space-infix-ops": 2, | ||
"space-unary-ops": 2, | ||
"strict": ["error", "global"], | ||
"template-curly-spacing": 2 | ||
"eqeqeq": "error", | ||
"no-use-before-define": ["error", "nofunc"], | ||
"no-var": "error", | ||
"object-shorthand": "error", | ||
"prefer-const": "error", | ||
"sort-requires/sort-requires": "error", | ||
"strict": ["error", "global"] | ||
} | ||
} |
{ | ||
"name": "eslint-config-stylelint", | ||
"version": "6.0.0", | ||
"version": "7.0.0", | ||
"description": "stylelint org's shareable config for eslint", | ||
@@ -9,3 +9,3 @@ "keywords": [ | ||
], | ||
"author": "Stylelint", | ||
"author": "stylelint", | ||
"license": "MIT", | ||
@@ -27,4 +27,4 @@ "repository": { | ||
"devDependencies": { | ||
"eslint": "^3.0.0", | ||
"jest": "^17.0.3", | ||
"eslint": "^4.1.0", | ||
"jest": "^20.0.1", | ||
"npmpub": "^3.0.3" | ||
@@ -38,3 +38,6 @@ }, | ||
"watch": "jest --watch" | ||
}, | ||
"dependencies": { | ||
"eslint-plugin-sort-requires": "^2.1.0" | ||
} | ||
} |
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
12445
3720
1
25
+ Addedeslint-plugin-sort-requires@2.1.0(transitive)