@zilero/stylelint 1.0.1 → 1.2.0

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.
Files changed (2) hide show
  1. package/README.md +19 -26
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -6,70 +6,63 @@
6
6
  <a href="https://github.com/Zilero232/dev-config-hub">
7
7
  <img src="https://img.shields.io/github/actions/workflow/status/Zilero232/dev-config-hub/integrate.yml?label=CI&logo=GitHub" alt="CI status">
8
8
  </a>
9
- <a href="https://www.npmjs.com/package/@zilero/tsconfigs">
10
- <img src="https://img.shields.io/npm/dm/@zilero/tsconfigs?logo=NPM" alt="npm downloads">
9
+ <a href="https://www.npmjs.com/package/@zilero/stylelint">
10
+ <img src="https://img.shields.io/npm/dm/@zilero/stylelint?logo=NPM" alt="npm downloads">
11
11
  </a>
12
12
  <a href="https://github.com/Zilero232/cli">
13
13
  <img src="https://img.shields.io/badge/License-MIT-yellow.svg" alt="npm license">
14
14
  </a>
15
15
  <a href="https://github.com/Zilero232/dev-config-hub/tree/main/tools/stylelint">
16
- <img src="https://img.shields.io/npm/v/@zilero/tsconfigs?label=version" alt="version">
16
+ <img src="https://img.shields.io/npm/v/@zilero/stylelint?label=version" alt="version">
17
17
  </a>
18
18
  </p>
19
19
 
20
- > ✨ Opinionated TypeScript configurations for modern development
20
+ > ✨ Opinionated Stylelint configurations for modern development
21
21
 
22
22
  ## ✨ Features
23
23
 
24
24
  - 📦 Zero-config setup
25
- - 🎯 Strict type checking enabled
26
- - 🔧 Modern ECMAScript features
27
- - 🚀 Optimized for React/Next.js
28
- - 💪 Path aliases support
29
- - 📱 Module resolution strategies
30
- - 🎭 Different environment presets
25
+ - 🎨 Consistent CSS/SCSS formatting
26
+ - ⚡️ Modern CSS features support
27
+ - 🚫 Common CSS errors prevention
28
+ - 📱 Responsive design best practices
29
+ - 🎭 Support for CSS-in-JS
30
+ - CSS Grid and Flexbox validation
31
31
 
32
32
  ## 📥 Installation
33
33
 
34
34
  ### Using npm
35
35
 
36
36
  ```bash
37
- npm install --save-dev @zilero/tsconfigs
37
+ npm install --save-dev @zilero/stylelint
38
38
  ```
39
39
  ### Using yarn
40
40
 
41
41
  ```bash
42
- yarn add -D @zilero/tsconfigs
42
+ yarn add -D @zilero/stylelint
43
43
  ```
44
44
 
45
45
  ### Using pnpm
46
46
 
47
47
  ```bash
48
- pnpm install -D @zilero/tsconfigs
48
+ pnpm install -D @zilero/stylelint
49
49
  ```
50
50
 
51
51
  ## 🚀 Quick start
52
52
 
53
- Create the `tsconfig.json` at the root of your project:
53
+ Create the `.stylelintrc.js` at the root of your project:
54
54
 
55
- ```json
55
+ ```js
56
56
  {
57
- "extends": "./node_modules/@zilero/tsconfigs/tsconfig.base.json",
58
- "compilerOptions": {
57
+ module.exports = {
58
+ extends: ['@zilero/stylelint']
59
59
  }
60
60
  }
61
61
  ```
62
62
 
63
- ## 📚 Available Configurations
64
-
65
- - `tsconfig.base.json` - Base configuration for TypeScript projects
66
- - `tsconfig.react.json` - Configuration for React applications
67
- - `tsconfig.next.json` - Configuration for Next.js projects
68
- - `tsconfig.node.json` - Configuration for Node.js applications
69
-
70
63
  ## 🤝 Contributing
71
64
 
72
- We'd love for you to contribute to `@zilero/tsconfigs`! Whether it's reporting bugs, suggesting features, or submitting pull requests, your help is always appreciated.
65
+ We'd love for you to contribute to `@zilero/stylelint`! Whether it's reporting bugs, suggesting features, or submitting pull requests, your help is always appreciated.
73
66
 
74
67
  ### How to contribute:
75
68
 
@@ -108,4 +101,4 @@ These folks keep the project moving and are resources for help.
108
101
 
109
102
  ## 📄 License
110
103
 
111
- License `@zilero/tsconfigs` is licensed under the [MIT License](LICENSE).
104
+ License `@zilero/stylelint` is licensed under the [MIT License](LICENSE).
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "displayName": "✨ Zilero Stylelint Config",
5
5
  "description": "💅 Opinionated Stylelint configuration for consistent CSS/SCSS styling",
6
6
  "license": "MIT",
7
- "version": "1.0.1",
7
+ "version": "1.2.0",
8
8
  "keywords": [
9
9
  "stylelint",
10
10
  "stylelint-config",
@@ -48,9 +48,9 @@
48
48
  "stylelint": "^16.6.1"
49
49
  },
50
50
  "dependencies": {
51
- "stylelint": "^16.6.1",
51
+ "stylelint": "^16.15.0",
52
52
  "stylelint-config-idiomatic-order": "^10.0.0",
53
- "stylelint-config-standard-scss": "^13.1.0",
53
+ "stylelint-config-standard-scss": "^14.0.0",
54
54
  "stylelint-order": "^6.0.4"
55
55
  },
56
56
  "scripts": {