@readme/stylelint-config 8.0.1 → 8.0.3

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/biome.json CHANGED
@@ -3,7 +3,11 @@
3
3
  "linter": {
4
4
  "enabled": true,
5
5
  "rules": {
6
- "recommended": true
6
+ "recommended": true,
7
+ "correctness": {
8
+ "useImportExtensions": "off",
9
+ "noUnresolvedImports": "off"
10
+ }
7
11
  }
8
12
  }
9
13
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@readme/stylelint-config",
3
- "version": "8.0.1",
3
+ "version": "8.0.3",
4
4
  "description": "ReadMe coding standards for styles",
5
5
  "main": "src/index.js",
6
6
  "scripts": {
@@ -24,10 +24,10 @@
24
24
  "dependencies": {
25
25
  "stylelint": "^16.25.0",
26
26
  "stylelint-config-css-modules": "^4.5.1",
27
- "stylelint-config-sass-guidelines": "^12.1.0",
27
+ "stylelint-config-sass-guidelines": "^13.0.0",
28
28
  "stylelint-config-standard": "^39.0.1",
29
29
  "stylelint-config-standard-scss": "^16.0.0",
30
- "stylelint-order": "^7.0.0",
30
+ "stylelint-order": "^8.1.1",
31
31
  "stylelint-prettier": "^5.0.3"
32
32
  },
33
33
  "peerDependencies": {
@@ -35,8 +35,9 @@
35
35
  },
36
36
  "devDependencies": {
37
37
  "@biomejs/biome": "^2.3.2",
38
- "@readme/standards": "^2.4.0",
39
- "vitest": "^4.0.6"
38
+ "@readme/standards": "^2.4.1",
39
+ "vitest": "^4.1.2"
40
40
  },
41
- "prettier": "@readme/standards/prettier"
41
+ "prettier": "@readme/standards/prettier",
42
+ "gitHead": "2d4635985e6d6095cbd6c5547292f5439a74f3f8"
42
43
  }
@@ -4,7 +4,7 @@ import path from 'node:path';
4
4
  import stylelint from 'stylelint';
5
5
  import { beforeEach, describe, expect, it } from 'vitest';
6
6
 
7
- import config from '..';
7
+ import * as config from '../src';
8
8
 
9
9
  const invalidScss = fs.readFileSync(path.join(__dirname, './invalid.scss'), 'utf-8');
10
10
  const validScss = fs.readFileSync(path.join(__dirname, './valid.scss'), 'utf-8');