@enke.dev/lint 0.8.3 → 0.8.4

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 +7 -1
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -66,7 +66,11 @@ Like the experimental typescript config flag above, the VSCode Eslint plugin can
66
66
 
67
67
  Using a shared Stylelint config with two major presets, `stylelint-config-standard-scss` and `stylelint-config-rational-order`.
68
68
 
69
- For now, no TypeScript support is included.
69
+ As this is totally opt-in, all required dependencies must be installed:
70
+
71
+ ```bash
72
+ npm i -D stylelint stylelint-config-rational-order stylelint-config-standard-scss stylelint-order
73
+ ```
70
74
 
71
75
  Create a `stylelint.config.js` file in the root of your project and add the following content:
72
76
 
@@ -77,3 +81,5 @@ import { defineConfig } from '@enke.dev/lint/stylelint.config.js';
77
81
 
78
82
  export default defineConfig({ cssCustomPropertyPrefix: 'your-prefix' });
79
83
  ```
84
+
85
+ For now, no TypeScript support is included.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@enke.dev/lint",
3
- "version": "0.8.3",
3
+ "version": "0.8.4",
4
4
  "description": "Meta package to provide linting for web projects",
5
5
  "homepage": "https://github.com/enke-dev/lint",
6
6
  "repository": {
@@ -60,7 +60,7 @@
60
60
  "typescript-eslint": "^8.42.0"
61
61
  },
62
62
  "devDependencies": {
63
- "@types/node": "24.3.0",
63
+ "@types/node": "24.3.1",
64
64
  "jiti": "2.5.1",
65
65
  "typescript": "5.9.2"
66
66
  },