@dword-design/stylelint-config 4.0.3 → 4.1.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.d.ts CHANGED
@@ -1,5 +1,12 @@
1
1
  declare const _default: {
2
2
  extends: any[];
3
+ overrides: {
4
+ extends: any[];
5
+ files: string[];
6
+ rules: {
7
+ 'scss/at-rule-no-unknown': null;
8
+ };
9
+ }[];
3
10
  plugins: any[];
4
11
  rules: {
5
12
  'csstools/use-nesting': (string | {
package/dist/index.js CHANGED
@@ -2,6 +2,13 @@ import packageName from "depcheck-package-name";
2
2
  import stylelintUseNesting from "stylelint-use-nesting";
3
3
  export default {
4
4
  extends: [packageName`stylelint-config-standard-scss`, `${packageName`stylelint-config-hudochenkov`}/order`, `${packageName`stylelint-prettier`}/recommended`, `${packageName`stylelint-config-recommended-vue`}/scss`],
5
+ overrides: [{
6
+ extends: [packageName`stylelint-config-tailwindcss`],
7
+ files: ["**/*.css"],
8
+ rules: {
9
+ "scss/at-rule-no-unknown": null
10
+ }
11
+ }],
5
12
  plugins: [stylelintUseNesting,
6
13
  // "CommonJS plugins are deprecated" error when listing it as a string
7
14
  packageName`stylelint-declaration-block-no-ignored-properties`],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dword-design/stylelint-config",
3
- "version": "4.0.3",
3
+ "version": "4.1.0",
4
4
  "repository": "dword-design/stylelint-config",
5
5
  "funding": "https://github.com/sponsors/dword-design",
6
6
  "license": "MIT",
@@ -34,6 +34,7 @@
34
34
  "stylelint-config-hudochenkov": "^11.0.0",
35
35
  "stylelint-config-recommended-vue": "^1.6.0",
36
36
  "stylelint-config-standard-scss": "^14.0.0",
37
+ "stylelint-config-tailwindcss": "^1.0.0",
37
38
  "stylelint-declaration-block-no-ignored-properties": "^2.8.0",
38
39
  "stylelint-order": "^6.0.4",
39
40
  "stylelint-prettier": "^5.0.3",