@tsofist/web-buddy 1.8.0 → 1.10.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/.editorconfig CHANGED
@@ -20,3 +20,16 @@ tab_width = 2
20
20
  trim_trailing_whitespace = false
21
21
  indent_size = 2
22
22
  tab_width = 2
23
+
24
+ # JavaScript/TypeScript
25
+ [*.{js,ts,vue}]
26
+ ij_typescript_spaces_within_imports = true
27
+ ij_javascript_spaces_within_imports = true
28
+ ij_typescript_spaces_within_object_literal_braces = true
29
+ ij_javascript_spaces_within_object_literal_braces = true
30
+ ij_javascript_spaces_within_object_type_braces = true
31
+ ij_typescript_spaces_within_object_type_braces = true
32
+
33
+ # Vue
34
+ [*.vue]
35
+ ij_vue_indent_children_of_top_level = template,script,style
package/.stylelintrc.yaml CHANGED
@@ -23,6 +23,17 @@ rules:
23
23
  order/properties-alphabetical-order: true
24
24
  no-empty-source: null
25
25
  declaration-property-value-no-unknown: true
26
+ selector-pseudo-class-no-unknown:
27
+ - true
28
+ - ignorePseudoClasses:
29
+ # for webpack
30
+ - v-deep
31
+ - v-slotted
32
+ - v-global
33
+ # for vite
34
+ - deep
35
+ - slotted
36
+ - global
26
37
  selector-pseudo-element-no-unknown:
27
38
  - true
28
39
  - ignorePseudoElements:
@@ -6,8 +6,6 @@ rules:
6
6
  vue/multi-word-component-names: off
7
7
  vue/html-closing-bracket-newline:
8
8
  - error
9
- - multiline: never
10
- singleline: never
11
9
 
12
10
  indent: off
13
11
  '@typescript-eslint/indent': off
@@ -23,7 +21,7 @@ rules:
23
21
  - 4
24
22
  - alignAttributesVertically: true
25
23
  baseIndent: 1
26
- closeBracket: 1
24
+ closeBracket: 0
27
25
 
28
26
  vue/max-attributes-per-line:
29
27
  - error
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tsofist/web-buddy",
3
- "version": "1.8.0",
3
+ "version": "1.10.0",
4
4
  "description": "Configuration basics for Linters, TypeScript, Semantic Release and others",
5
5
  "author": "Andrew Berdnikov <tsofistgudmen@gmail.com>",
6
6
  "license": "MIT",
@@ -28,26 +28,26 @@
28
28
  "eslint-plugin-decorator-position": "^5.0.2",
29
29
  "eslint-plugin-import": "^2.29.1",
30
30
  "eslint-plugin-json-format": "^2.0.1",
31
- "eslint-plugin-prettier": "^5.1.3",
31
+ "eslint-plugin-prettier": "^5.2.1",
32
32
  "eslint-plugin-prettier-vue": "^5.0.0",
33
- "eslint-plugin-vue": "^9.26.0",
33
+ "eslint-plugin-vue": "^9.27.0",
34
34
  "eslint-plugin-yml": "^1.14.0",
35
35
  "husky": "^9.0.11",
36
36
  "postcss-html": "^1.7.0",
37
- "prettier": "^3.2.5",
37
+ "prettier": "^3.3.3",
38
38
  "semantic-release": "^22.0.12",
39
- "stylelint": "^16.6.0",
40
- "stylelint-config-standard": "^36.0.0",
39
+ "stylelint": "^16.8.2",
40
+ "stylelint-config-standard": "^36.0.1",
41
41
  "stylelint-config-standard-scss": "^13.1.0",
42
42
  "stylelint-config-standard-vue": "^1.0.0",
43
43
  "stylelint-order": "^6.0.4",
44
- "stylelint-prettier": "^5.0.0",
45
- "stylelint-scss": "^6.3.0",
44
+ "stylelint-prettier": "^5.0.2",
45
+ "stylelint-scss": "^6.5.1",
46
46
  "typescript": "~5.4.5"
47
47
  },
48
48
  "devDependencies": {
49
- "rimraf": "^5.0.7",
50
- "tslib": "^2.6.2"
49
+ "rimraf": "^5.0.10",
50
+ "tslib": "^2.7.0"
51
51
  },
52
52
  "publishConfig": {
53
53
  "registry": "https://registry.npmjs.org/",