@deot/dev-stylelint 2.8.3 → 2.9.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.
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": [
@@ -51,10 +51,10 @@ const configure = async () => {
51
51
  // scss
52
52
  "scss/dollar-variable-pattern": "[a-zA-Z0-9_-]+",
53
53
  // 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",
54
+ "@stylistic/indentation": "tab",
55
+ "@stylistic/declaration-colon-space-after": "always-single-line",
56
+ "@stylistic/declaration-colon-space-before": "never",
57
+ "@stylistic/declaration-block-trailing-semicolon": "always",
58
58
  // Specify the alphabetical order of the attributes in the declaration block
59
59
  "order/properties-order": [
60
60
  "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": [
@@ -47,10 +47,10 @@ const configure = async () => {
47
47
  // scss
48
48
  "scss/dollar-variable-pattern": "[a-zA-Z0-9_-]+",
49
49
  // 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",
50
+ "@stylistic/indentation": "tab",
51
+ "@stylistic/declaration-colon-space-after": "always-single-line",
52
+ "@stylistic/declaration-colon-space-before": "never",
53
+ "@stylistic/declaration-block-trailing-semicolon": "always",
54
54
  // Specify the alphabetical order of the attributes in the declaration block
55
55
  "order/properties-order": [
56
56
  "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.0",
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
  }