@siemens/stylelint-config-scss 1.1.2 → 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 +6 -2
- package/package.json +1 -1
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
|
|
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
|
|
123
|
+
extends: [...angularTemplateConfig],
|
|
120
124
|
files: ['**/*.html']
|
|
121
125
|
});
|
|
122
126
|
|