@seayoo-web/scripts 3.1.2 → 3.1.4

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.js CHANGED
@@ -359,6 +359,7 @@ const importEslintConfig = [
359
359
  flatConfigs.recommended,
360
360
  {
361
361
  rules: {
362
+ "import/consistent-type-specifier-style": ["error", "prefer-top-level"],
362
363
  "import/no-unresolved": "off",
363
364
  "import/named": "off",
364
365
  "import/namespace": "off",
@@ -390,6 +391,12 @@ const stylelintConfig = {
390
391
  {
391
392
  ignorePseudoClasses: ["deep", "global"]
392
393
  }
394
+ ],
395
+ "declaration-block-no-redundant-longhand-properties": [
396
+ true,
397
+ {
398
+ ignoreShorthands: ["inset"]
399
+ }
393
400
  ]
394
401
  }
395
402
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seayoo-web/scripts",
3
- "version": "3.1.2",
3
+ "version": "3.1.4",
4
4
  "description": "scripts for seayoo web repos",
5
5
  "type": "module",
6
6
  "source": "index.ts",
@@ -15,5 +15,8 @@ export declare const stylelintConfig: {
15
15
  "selector-pseudo-class-no-unknown": (boolean | {
16
16
  ignorePseudoClasses: string[];
17
17
  })[];
18
+ "declaration-block-no-redundant-longhand-properties": (boolean | {
19
+ ignoreShorthands: string[];
20
+ })[];
18
21
  };
19
22
  };