@deot/dev-stylelint 2.8.3 → 2.9.1

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/dist/index.cjs CHANGED
@@ -4,7 +4,7 @@ Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toString
4
4
 
5
5
  const configure = async () => {
6
6
  return {
7
- plugins: ["stylelint-order", "stylelint-codeguide"],
7
+ plugins: ["stylelint-order", "@stylistic/stylelint-plugin"],
8
8
  extends: ["stylelint-config-standard-scss"],
9
9
  rules: {
10
10
  "at-rule-no-unknown": [
@@ -12,6 +12,7 @@ const configure = async () => {
12
12
  {
13
13
  ignoreAtRules: [
14
14
  "use",
15
+ "forward",
15
16
  "for",
16
17
  "function",
17
18
  "if",
@@ -51,10 +52,10 @@ const configure = async () => {
51
52
  // scss
52
53
  "scss/dollar-variable-pattern": "[a-zA-Z0-9_-]+",
53
54
  // stylistic
54
- "codeguide/indentation": "tab",
55
- "codeguide/declaration-colon-space-after": "always-single-line",
56
- "codeguide/declaration-colon-space-before": "never",
57
- "codeguide/declaration-block-trailing-semicolon": "always",
55
+ "@stylistic/indentation": "tab",
56
+ "@stylistic/declaration-colon-space-after": "always-single-line",
57
+ "@stylistic/declaration-colon-space-before": "never",
58
+ "@stylistic/declaration-block-trailing-semicolon": "always",
58
59
  // Specify the alphabetical order of the attributes in the declaration block
59
60
  "order/properties-order": [
60
61
  "position",
package/dist/index.js CHANGED
@@ -1,6 +1,6 @@
1
1
  const configure = async () => {
2
2
  return {
3
- plugins: ["stylelint-order", "stylelint-codeguide"],
3
+ plugins: ["stylelint-order", "@stylistic/stylelint-plugin"],
4
4
  extends: ["stylelint-config-standard-scss"],
5
5
  rules: {
6
6
  "at-rule-no-unknown": [
@@ -8,6 +8,7 @@ const configure = async () => {
8
8
  {
9
9
  ignoreAtRules: [
10
10
  "use",
11
+ "forward",
11
12
  "for",
12
13
  "function",
13
14
  "if",
@@ -47,10 +48,10 @@ const configure = async () => {
47
48
  // scss
48
49
  "scss/dollar-variable-pattern": "[a-zA-Z0-9_-]+",
49
50
  // stylistic
50
- "codeguide/indentation": "tab",
51
- "codeguide/declaration-colon-space-after": "always-single-line",
52
- "codeguide/declaration-colon-space-before": "never",
53
- "codeguide/declaration-block-trailing-semicolon": "always",
51
+ "@stylistic/indentation": "tab",
52
+ "@stylistic/declaration-colon-space-after": "always-single-line",
53
+ "@stylistic/declaration-colon-space-before": "never",
54
+ "@stylistic/declaration-block-trailing-semicolon": "always",
54
55
  // Specify the alphabetical order of the attributes in the declaration block
55
56
  "order/properties-order": [
56
57
  "position",
package/package.json CHANGED
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "name": "@deot/dev-stylelint",
3
- "version": "2.8.3",
3
+ "version": "2.9.1",
4
4
  "main": "dist/index.js",
5
5
  "type": "module",
6
6
  "types": "dist/index.d.ts",
7
7
  "exports": {
8
8
  ".": {
9
+ "types": "./dist/index.d.ts",
9
10
  "import": "./dist/index.js",
10
- "require": "./dist/index.cjs",
11
- "types": "./dist/index.d.ts"
11
+ "require": "./dist/index.cjs"
12
12
  }
13
13
  },
14
14
  "files": [
@@ -19,11 +19,11 @@
19
19
  "access": "public"
20
20
  },
21
21
  "dependencies": {
22
- "stylelint-config-standard-scss": "^12.0.0",
23
- "stylelint-codeguide": "^1.0.2",
22
+ "@stylistic/stylelint-plugin": "^3.1.2",
23
+ "stylelint-config-standard-scss": "^14.0.0",
24
24
  "stylelint-order": "^6.0.4"
25
25
  },
26
26
  "devDependencies": {
27
- "stylelint": "^16.0.2"
27
+ "stylelint": "^16.14.1"
28
28
  }
29
29
  }