@siemens/stylelint-config-scss 2.0.0-next.1 → 2.0.0-next.2

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/README.md CHANGED
@@ -40,6 +40,10 @@ will get changed in the patch releases._
40
40
 
41
41
  ### ESLint
42
42
 
43
+ Our ESLint configurations does not include any formatting rules.
44
+ Please use a formatter like [Prettier](https://prettier.io/)
45
+ or add a formatting ruleset for ESLint like [ESLint Stylistic](https://eslint.style/).
46
+
43
47
  #### TypeScript
44
48
 
45
49
  Include the ESLint preset in your root `eslint.config.mjs`:
@@ -87,7 +91,7 @@ const __filename = fileURLToPath(import.meta.url);
87
91
  const __dirname = path.dirname(__filename);
88
92
 
89
93
  export const tsConfig = typescriptEslint.config({
90
- extends: [...angularTypescriptConfig, prettier],
94
+ extends: [...angularTypescriptConfig],
91
95
  files: ['**/*.ts'],
92
96
  languageOptions: {
93
97
  parserOptions: {
@@ -116,7 +120,7 @@ export const tsConfig = typescriptEslint.config({
116
120
  });
117
121
 
118
122
  export const templateConfig = typescriptEslint.config({
119
- extends: [...angularTemplateConfig, prettier],
123
+ extends: [...angularTemplateConfig],
120
124
  files: ['**/*.html']
121
125
  });
122
126
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@siemens/stylelint-config-scss",
3
- "version": "2.0.0-next.1",
3
+ "version": "2.0.0-next.2",
4
4
  "description": "Configuration for Stylelint using SCSS (Sass).",
5
5
  "files": [
6
6
  "*.yml",
@@ -25,6 +25,7 @@
25
25
  },
26
26
  "license": "MIT",
27
27
  "peerDependencies": {
28
+ "postcss-scss": "^4.0.0",
28
29
  "stylelint": "^16.8.1",
29
30
  "stylelint-scss": "^6.5.1"
30
31
  }
package/stylelintrc.yml CHANGED
@@ -1,5 +1,6 @@
1
1
  plugins:
2
2
  - stylelint-scss
3
+ customSyntax: postcss-scss
3
4
  rules:
4
5
  at-rule-disallowed-list:
5
6
  - debug