ultracite 3.3.0 → 3.3.1
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/prettier.d.mts +11 -0
- package/dist/prettier.mjs +1 -0
- package/dist/stylelint.d.mts +18 -0
- package/dist/stylelint.mjs +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
declare let tabWidth: number;
|
|
2
|
+
declare let useTabs: boolean;
|
|
3
|
+
declare let semi: boolean;
|
|
4
|
+
declare let singleQuote: boolean;
|
|
5
|
+
declare let trailingComma: string;
|
|
6
|
+
declare let bracketSpacing: boolean;
|
|
7
|
+
declare let arrowParens: string;
|
|
8
|
+
declare let proseWrap: string;
|
|
9
|
+
declare let printWidth: number;
|
|
10
|
+
|
|
11
|
+
export { arrowParens, bracketSpacing, printWidth, proseWrap, semi, singleQuote, tabWidth, trailingComma, useTabs };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
var t=(a,e)=>()=>(e||a((e={exports:{}}).exports,e),e.exports);var s=t((n,r)=>{r.exports={tabWidth:2,useTabs:!1,semi:!0,singleQuote:!0,trailingComma:"es5",bracketSpacing:!0,arrowParens:"always",proseWrap:"never",printWidth:80}});export default s();
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
declare let plugins: string[];
|
|
2
|
+
declare let _extends: string[];
|
|
3
|
+
|
|
4
|
+
declare let rules: {
|
|
5
|
+
'at-rule-no-unknown': (boolean | {
|
|
6
|
+
ignoreAtRules: string[];
|
|
7
|
+
})[];
|
|
8
|
+
'declaration-property-value-no-unknown': boolean;
|
|
9
|
+
'no-descending-specificity': null;
|
|
10
|
+
'declaration-block-no-redundant-longhand-properties': (boolean | {
|
|
11
|
+
ignoreShorthands: string[];
|
|
12
|
+
})[];
|
|
13
|
+
'selector-pseudo-class-no-unknown': (boolean | {
|
|
14
|
+
ignorePseudoClasses: string[];
|
|
15
|
+
})[];
|
|
16
|
+
};
|
|
17
|
+
|
|
18
|
+
export { _extends as extends, plugins, rules };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
var r=(o,e)=>()=>(e||o((e={exports:{}}).exports,e),e.exports);var t=r((s,n)=>{n.exports={plugins:["stylelint-prettier"],extends:["stylelint-config-standard","stylelint-config-idiomatic-order"],rules:{"at-rule-no-unknown":[!0,{ignoreAtRules:["tailwind","apply","layer","variants","responsive","screen"]}],"declaration-property-value-no-unknown":!0,"no-descending-specificity":null,"declaration-block-no-redundant-longhand-properties":[!0,{ignoreShorthands:["/flex/"]}],"selector-pseudo-class-no-unknown":[!0,{ignorePseudoClasses:["global"]}]}}});export default t();
|
package/package.json
CHANGED