@cherepanov.pavel/shareable-config 1.0.15 → 1.0.17

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.
@@ -7,7 +7,6 @@
7
7
  // typescript
8
8
  "yoavbls.pretty-ts-errors",
9
9
  "vue.volar",
10
- "mrmlnc.vscode-scss",
11
10
  "ms-azuretools.vscode-containers",
12
11
  // "redhat.vscode-yaml",
13
12
  "savh.json5-kit",
@@ -43,10 +43,9 @@
43
43
  "jsonc",
44
44
  "json5",
45
45
  ],
46
- // "stylelint.validate": [
47
- // "css",
48
- // "scss",
49
- // "vue"
50
- // ],
46
+ "stylelint.validate": [
47
+ "css",
48
+ "vue",
49
+ ],
51
50
  "cSpell.language": "en,ru",
52
51
  }
@@ -9,7 +9,7 @@
9
9
  "<template>",
10
10
  "</template>",
11
11
  "",
12
- "<style scoped lang=\"scss\">",
12
+ "<style scoped>",
13
13
  "</style>",
14
14
  ],
15
15
  // typescript multiline
@@ -20,7 +20,7 @@
20
20
  "<template>",
21
21
  "</template>",
22
22
  "",
23
- "<style scoped lang=\"scss\">",
23
+ "<style scoped>",
24
24
  "</style>",
25
25
  ],
26
26
  // typescript multiline end
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@cherepanov.pavel/shareable-config",
3
3
  "description": "setup for new repositories",
4
- "version": "1.0.15",
4
+ "version": "1.0.17",
5
5
  "type": "module",
6
6
  "devEngines": {
7
7
  "packageManager": {
@@ -43,7 +43,7 @@
43
43
  },
44
44
  "scripts": {
45
45
  "lint": "run-p -lc lint:js lint:css",
46
- "lint:fix": "run-p -lc lint:js:fix lint:css:fix lint:types",
46
+ "lint:fix": "run-p -lc lint:js:fix lint:css:fix",
47
47
  "lint:js": "eslint",
48
48
  "lint:js:fix": "npm run lint:js -- --fix",
49
49
  "lint:css": "stylelint \"./**/*.{css,vue}\" --ignore-path .gitignore --formatter verbose",
@@ -62,10 +62,10 @@
62
62
  "globals": "^17.9.0",
63
63
  "jiti": "^2.7.0",
64
64
  "json5": "^2.2.3",
65
+ "npm-run-all2": "^9.0.3",
65
66
  "postcss-html": "^2.0.0",
66
67
  "stylelint": "^17.14.1",
67
68
  "stylelint-config-standard": "^40.0.0",
68
- "stylelint-config-standard-scss": "^17.0.0",
69
69
  "stylelint-config-standard-vue": "^2.0.0",
70
70
  "stylelint-order": "^8.1.1",
71
71
  "vue-eslint-parser": "^10.4.1"
@@ -14,15 +14,13 @@ export default {
14
14
  extends: concat(
15
15
  [
16
16
  "stylelint-config-standard",
17
- "stylelint-config-standard-scss",
18
- "stylelint-config-standard-vue/scss",
17
+ "stylelint-config-standard-vue",
19
18
  ],
20
19
  [
21
20
  "./rules/base.js",
22
21
  "./rules/stylistic.js",
23
22
  "./rules/order.js",
24
23
  "./rules/conflicts.js",
25
- "./rules/scss.js",
26
24
  ].map((string) => {
27
25
  return path.resolve(currentDir, string);
28
26
  }),
@@ -1,13 +0,0 @@
1
- export default {
2
- rules: {
3
- /* $-variables */
4
- "scss/dollar-variable-empty-line-before": [
5
- "never",
6
- {
7
- ignore: "after-dollar-variable",
8
- },
9
- ],
10
- // https://gitlab.kadnk.ru/frontend/configs/-/issues/1
11
- "scss/load-partial-extension": "always",
12
- },
13
- };