@nice-move/stylelint-config 0.10.25 → 0.10.27

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/index.cjs CHANGED
@@ -10,18 +10,12 @@ module.exports = {
10
10
  require.resolve('./lib/ignore.cjs'),
11
11
  require.resolve('./lib/base.cjs'),
12
12
  ],
13
- plugins: [
14
- 'stylelint-declaration-block-no-ignored-properties',
15
- 'stylelint-no-unresolved-module',
16
- ],
13
+ plugins: ['stylelint-declaration-block-no-ignored-properties'],
17
14
  rules: {
18
15
  'plugin/declaration-block-no-ignored-properties': [
19
16
  true,
20
17
  { severity: 'warning' },
21
18
  ],
22
- 'plugin/no-unresolved-module': {
23
- modules: ['node_modules'],
24
- },
25
19
  ...(tailwind
26
20
  ? {
27
21
  'at-rule-no-deprecated': [true, { ignoreAtRules: ['apply'] }],
package/lib/scss.cjs CHANGED
@@ -43,7 +43,6 @@ module.exports = {
43
43
  'scss/selector-no-redundant-nesting-selector': true,
44
44
 
45
45
  // off -------------
46
- 'scss/at-import-no-partial-leading-underscore': null,
47
46
  'scss/declaration-nested-properties-no-divided-groups': null,
48
47
 
49
48
  // ---- handle by prettier -----
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nice-move/stylelint-config",
3
- "version": "0.10.25",
3
+ "version": "0.10.27",
4
4
  "description": "A `stylelint` config created by personal preferences",
5
5
  "license": "MIT",
6
6
  "author": {
@@ -29,19 +29,18 @@
29
29
  "main": "index.cjs",
30
30
  "type": "commonjs",
31
31
  "dependencies": {
32
- "postcss": "^8.5.6",
33
- "postcss-html": "^1.8.0",
32
+ "postcss": "^8.5.8",
33
+ "postcss-html": "^1.8.1",
34
34
  "postcss-less": "^6.0.0",
35
- "postcss-markdown": "^1.3.0",
35
+ "postcss-markdown": "^1.3.1",
36
36
  "postcss-scss": "^4.0.9",
37
37
  "settingz": "^0.2.0",
38
- "stylelint-config-standard": "^39.0.1",
39
- "stylelint-declaration-block-no-ignored-properties": "^2.8.0",
40
- "stylelint-no-unresolved-module": "^2.5.2",
41
- "stylelint-scss": "^6.14.0"
38
+ "stylelint-config-standard": "^40.0.0",
39
+ "stylelint-declaration-block-no-ignored-properties": "^3.0.0",
40
+ "stylelint-scss": "^7.0.0"
42
41
  },
43
42
  "peerDependencies": {
44
- "stylelint": "^16.26.1"
43
+ "stylelint": "^17.6.0"
45
44
  },
46
45
  "engines": {
47
46
  "node": ">=24.0.0 || ^22.18.0"