@schemastore/csscomb 0.0.4 → 0.0.8
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/LICENSE +1 -1
- package/README.md +1 -1
- package/index.d.ts +55 -27
- package/package.json +3 -3
package/LICENSE
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
MIT License
|
|
2
2
|
|
|
3
|
-
Copyright (c) Florian
|
|
3
|
+
Copyright (c) Florian Imdahl. All rights reserved.
|
|
4
4
|
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
6
|
of this software and associated documentation files (the "Software"), to deal
|
package/README.md
CHANGED
|
@@ -8,5 +8,5 @@ This package contains type definitions for csscomb.
|
|
|
8
8
|
Files were exported from https://github.com/ffflorian/schemastore-updater/tree/main/schemas/csscomb.
|
|
9
9
|
|
|
10
10
|
## Additional Details
|
|
11
|
-
* Last updated:
|
|
11
|
+
* Last updated: Mon, Jan 23, 2023, 19:39:42 GMT
|
|
12
12
|
* Dependencies: none
|
package/index.d.ts
CHANGED
|
@@ -1,109 +1,137 @@
|
|
|
1
|
-
/*
|
|
1
|
+
/* eslint-disable */
|
|
2
2
|
/**
|
|
3
3
|
* This file was automatically generated by json-schema-to-typescript.
|
|
4
4
|
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
|
|
5
5
|
* and run json-schema-to-typescript to regenerate this file.
|
|
6
6
|
*/
|
|
7
7
|
|
|
8
|
-
export interface
|
|
8
|
+
export interface ACSSCombConfigSchema {
|
|
9
9
|
/**
|
|
10
|
-
*
|
|
10
|
+
* A list of files to ignore in the current project
|
|
11
|
+
* https://github.com/csscomb/csscomb.js/blob/dev/doc/configuration.md#create-custom-config
|
|
11
12
|
*/
|
|
12
13
|
exclude?: string[];
|
|
13
14
|
verbose?: boolean;
|
|
15
|
+
/**
|
|
16
|
+
* Whether to add missing semicolon in the current project
|
|
17
|
+
* https://github.com/csscomb/csscomb.js/blob/dev/doc/configuration.md#create-custom-config
|
|
18
|
+
*/
|
|
14
19
|
"always-semicolon"?: boolean;
|
|
15
20
|
/**
|
|
16
|
-
*
|
|
21
|
+
* A block indent style in the current project
|
|
22
|
+
* https://github.com/csscomb/csscomb.js/blob/dev/doc/configuration.md#create-custom-config
|
|
17
23
|
*/
|
|
18
24
|
"block-indent"?: string;
|
|
19
25
|
/**
|
|
20
|
-
*
|
|
26
|
+
* A hexadecimal color style in the current project
|
|
27
|
+
* https://github.com/csscomb/csscomb.js/blob/dev/doc/configuration.md#create-custom-config
|
|
21
28
|
*/
|
|
22
29
|
"color-case"?: "lower" | "upper";
|
|
23
30
|
/**
|
|
24
|
-
* Whether to expand hexadecimal
|
|
31
|
+
* Whether to expand hexadecimal color or use shorthand in the current project
|
|
32
|
+
* https://github.com/csscomb/csscomb.js/blob/dev/doc/configuration.md#create-custom-config
|
|
25
33
|
*/
|
|
26
34
|
"color-shorthand"?: boolean;
|
|
27
35
|
/**
|
|
28
|
-
*
|
|
36
|
+
* Whether to unify case of element selector in the current project
|
|
37
|
+
* https://github.com/csscomb/csscomb.js/blob/dev/doc/configuration.md#create-custom-config
|
|
29
38
|
*/
|
|
30
39
|
"element-case"?: "lower" | "upper";
|
|
31
40
|
/**
|
|
32
|
-
*
|
|
41
|
+
* Whether to add a trailing line break in the current project
|
|
42
|
+
* https://github.com/csscomb/csscomb.js/blob/dev/doc/configuration.md#create-custom-config
|
|
33
43
|
*/
|
|
34
44
|
"eof-newline"?: boolean;
|
|
35
45
|
/**
|
|
36
|
-
*
|
|
46
|
+
* Whether to add leading zero in a dimension in the current project
|
|
47
|
+
* https://github.com/csscomb/csscomb.js/blob/dev/doc/configuration.md#create-custom-config
|
|
37
48
|
*/
|
|
38
49
|
"leading-zero"?: boolean;
|
|
39
50
|
/**
|
|
40
|
-
*
|
|
51
|
+
* A quote style in the current project
|
|
52
|
+
* https://github.com/csscomb/csscomb.js/blob/dev/doc/configuration.md#create-custom-config
|
|
41
53
|
*/
|
|
42
54
|
quotes?: "single" | "double";
|
|
43
55
|
/**
|
|
44
|
-
*
|
|
56
|
+
* Whether to remove empty rulesets
|
|
57
|
+
* https://github.com/csscomb/csscomb.js/blob/dev/doc/configuration.md#create-custom-config
|
|
45
58
|
*/
|
|
46
59
|
"remove-empty-rulesets"?: boolean;
|
|
47
60
|
/**
|
|
48
|
-
*
|
|
61
|
+
* A space style after a colon in the current project
|
|
62
|
+
* https://github.com/csscomb/csscomb.js/blob/dev/doc/configuration.md#create-custom-config
|
|
49
63
|
*/
|
|
50
64
|
"space-after-colon"?: string;
|
|
51
65
|
/**
|
|
52
|
-
*
|
|
66
|
+
* A space style after a combinator in the current project
|
|
67
|
+
* https://github.com/csscomb/csscomb.js/blob/dev/doc/configuration.md#create-custom-config
|
|
53
68
|
*/
|
|
54
69
|
"space-after-combinator"?: string;
|
|
55
70
|
/**
|
|
56
|
-
*
|
|
71
|
+
* A space style after an opening brace in the current project
|
|
72
|
+
* https://github.com/csscomb/csscomb.js/blob/dev/doc/configuration.md#create-custom-config
|
|
57
73
|
*/
|
|
58
74
|
"space-after-opening-brace"?: string;
|
|
59
75
|
/**
|
|
60
|
-
*
|
|
76
|
+
* A space style after a selector delimiter in the current project
|
|
77
|
+
* https://github.com/csscomb/csscomb.js/blob/dev/doc/configuration.md#create-custom-config
|
|
61
78
|
*/
|
|
62
79
|
"space-after-selector-delimiter"?: string;
|
|
63
80
|
/**
|
|
64
|
-
*
|
|
81
|
+
* A space style after a closing brace in the current project
|
|
82
|
+
* https://github.com/csscomb/csscomb.js/blob/dev/doc/configuration.md#create-custom-config
|
|
65
83
|
*/
|
|
66
84
|
"space-after-closing-brace"?: string;
|
|
67
85
|
/**
|
|
68
|
-
*
|
|
86
|
+
* A space style before a colon in the current project
|
|
87
|
+
* https://github.com/csscomb/csscomb.js/blob/dev/doc/configuration.md#create-custom-config
|
|
69
88
|
*/
|
|
70
89
|
"space-before-colon"?: string;
|
|
71
90
|
/**
|
|
72
|
-
*
|
|
91
|
+
* A space style before a combinator in the current project
|
|
92
|
+
* https://github.com/csscomb/csscomb.js/blob/dev/doc/configuration.md#create-custom-config
|
|
73
93
|
*/
|
|
74
94
|
"space-before-combinator"?: string;
|
|
75
95
|
/**
|
|
76
|
-
*
|
|
96
|
+
* A space style before an opening brace in the current project
|
|
97
|
+
* https://github.com/csscomb/csscomb.js/blob/dev/doc/configuration.md#create-custom-config
|
|
77
98
|
*/
|
|
78
99
|
"space-before-opening-brace"?: string;
|
|
79
100
|
/**
|
|
80
|
-
*
|
|
101
|
+
* A space style before a selector delimiter in the current project
|
|
102
|
+
* https://github.com/csscomb/csscomb.js/blob/dev/doc/configuration.md#create-custom-config
|
|
81
103
|
*/
|
|
82
104
|
"space-before-selector-delimiter"?: string;
|
|
83
105
|
/**
|
|
84
|
-
*
|
|
106
|
+
* A space style between declarations in the current project
|
|
107
|
+
* https://github.com/csscomb/csscomb.js/blob/dev/doc/configuration.md#create-custom-config
|
|
85
108
|
*/
|
|
86
109
|
"space-between-declarations"?: string;
|
|
87
110
|
/**
|
|
88
|
-
* Whether to trim trailing
|
|
111
|
+
* Whether to trim trailing space in the current project
|
|
112
|
+
* https://github.com/csscomb/csscomb.js/blob/dev/doc/configuration.md#create-custom-config
|
|
89
113
|
*/
|
|
90
114
|
"strip-spaces"?: boolean;
|
|
91
115
|
/**
|
|
92
|
-
* Whether to remove
|
|
116
|
+
* Whether to remove unit in zero-valued dimension in the current project
|
|
117
|
+
* https://github.com/csscomb/csscomb.js/blob/dev/doc/configuration.md#create-custom-config
|
|
93
118
|
*/
|
|
94
119
|
"unitless-zero"?: boolean;
|
|
95
120
|
/**
|
|
96
|
-
* Whether to align
|
|
121
|
+
* Whether to align prefix in property and value in the current project
|
|
122
|
+
* https://github.com/csscomb/csscomb.js/blob/dev/doc/configuration.md#create-custom-config
|
|
97
123
|
*/
|
|
98
124
|
"vendor-prefix-align"?: boolean;
|
|
99
125
|
/**
|
|
100
|
-
*
|
|
126
|
+
* A sort order in the current project
|
|
127
|
+
* https://github.com/csscomb/csscomb.js/blob/dev/doc/configuration.md#create-custom-config
|
|
101
128
|
*/
|
|
102
129
|
"sort-order"?: string[][];
|
|
103
130
|
"tab-size"?: boolean;
|
|
104
131
|
/**
|
|
105
|
-
*
|
|
132
|
+
* A sort style of unknown properties in the current project
|
|
133
|
+
* https://github.com/csscomb/csscomb.js/blob/dev/doc/configuration.md#create-custom-config
|
|
106
134
|
*/
|
|
107
|
-
"sort-order-fallback"?:
|
|
135
|
+
"sort-order-fallback"?: string;
|
|
108
136
|
[k: string]: unknown;
|
|
109
137
|
}
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"author": "Florian
|
|
2
|
+
"author": "Florian Imdahl <git@ffflorian.de>",
|
|
3
3
|
"dependencies": {},
|
|
4
4
|
"description": "TypeScript definitions for csscomb.",
|
|
5
5
|
"license": "MIT",
|
|
@@ -7,8 +7,8 @@
|
|
|
7
7
|
"name": "@schemastore/csscomb",
|
|
8
8
|
"repository": "https://github.com/ffflorian/schemastore-updater/tree/main/schemas/csscomb",
|
|
9
9
|
"scripts": {},
|
|
10
|
-
"typesPublisherContentHash": "
|
|
10
|
+
"typesPublisherContentHash": "e56ea33797097d324156cd5831541ecc8fc0cdac171f46309db0f022ecca25b0",
|
|
11
11
|
"types": "index.d.ts",
|
|
12
|
-
"version": "0.0.
|
|
12
|
+
"version": "0.0.8",
|
|
13
13
|
"typeScriptVersion": "2.2"
|
|
14
14
|
}
|