Skip to content

Commit 8a5d85d

Browse files
author
Genki Katsutani
committed
Merge branch 'develop'
2 parents e5c756f + 7d8899d commit 8a5d85d

10 files changed

+727
-775
lines changed

.markuplintrc

+4-6
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,19 @@
11
{
2+
"extends": ["markuplint:recommended"],
23
"rules": {
34
"no-use-event-handler-attr": false,
45
"invalid-attr": {
56
"options": {
6-
"ignoreAttrNamePrefix": [
7-
"each",
8-
"if",
9-
"is"
10-
]
7+
"ignoreAttrNamePrefix": ["each", "if", "is"]
118
}
129
}
1310
},
1411
"nodeRules": [
1512
{
1613
"selector": "template",
1714
"rules": {
18-
"invalid-attr": false
15+
"invalid-attr": false,
16+
"deprecated-element": true
1917
}
2018
}
2119
]

.prettierrc.json

+11-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
{
22
"semi": false,
33
"singleQuote": true,
4-
"trailingComma": "none"
4+
"trailingComma": "none",
5+
"overrides": [
6+
{
7+
"files": "*.riot",
8+
"options": {
9+
"parser": "html"
10+
}
11+
}
12+
],
13+
"plugins": ["prettier-plugin-css-order"],
14+
"cssDeclarationSorterOrder": "alphabetical"
515
}

0 commit comments

Comments
 (0)