UNPKG
html-attribute-sorter
Version:
latest (0.4.3)
0.4.3
0.4.2
0.4.1
0.4.0
0.3.2
0.3.1
0.3.0
0.2.1
0.2.0
0.1.0
An html attribute sorter
shufo/html-attribute-sorter
html-attribute-sorter
/
src
/
options.ts
12 lines
(10 loc)
•
207 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
export
type
Strategy
= |
"alphabetical"
|
"code-guide"
|
"idiomatic"
|
"vuejs"
|
"custom"
;
export
interface
ISortOption
{
order
:
Strategy
;
customRegexes
?:
string
[]; }