@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 +7 -0
- package/package.json +1 -1
- package/types/src/stylelint.d.ts +3 -0
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
package/types/src/stylelint.d.ts
CHANGED