@mikey-pro/stylelint-config 9.0.6 → 9.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +38 -0
- package/package.json +2 -2
package/README.md
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
# @mikey-pro/stylelint-config
|
|
2
|
+
|
|
3
|
+
Stylelint configuration for the Mikey Pro style guide.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install @mikey-pro/stylelint-config
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Usage
|
|
12
|
+
|
|
13
|
+
```javascript
|
|
14
|
+
// .stylelintrc.js
|
|
15
|
+
module.exports = {
|
|
16
|
+
extends: ['@mikey-pro/stylelint-config'],
|
|
17
|
+
};
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
Or in package.json:
|
|
21
|
+
|
|
22
|
+
```json
|
|
23
|
+
{
|
|
24
|
+
"stylelint": {
|
|
25
|
+
"extends": "@mikey-pro/stylelint-config"
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
## Features
|
|
31
|
+
|
|
32
|
+
- CSS/SCSS best practices
|
|
33
|
+
- Property ordering
|
|
34
|
+
- Selector specificity limits
|
|
35
|
+
- Color and font consistency
|
|
36
|
+
- Performance optimizations
|
|
37
|
+
|
|
38
|
+
See [Mikey Pro](https://github.com/chiefmikey/mikey-pro) for full documentation.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mikey-pro/stylelint-config",
|
|
3
|
-
"version": "9.0.
|
|
3
|
+
"version": "9.0.7",
|
|
4
4
|
"description": "Mikey Pro Stylelint configuration",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"dependencies": {
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
},
|
|
16
16
|
"type": "module",
|
|
17
17
|
"engines": {
|
|
18
|
-
"node": ">=
|
|
18
|
+
"node": ">=20.0.0",
|
|
19
19
|
"npm": ">=9.0.0"
|
|
20
20
|
},
|
|
21
21
|
"files": [
|