-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
77 lines (77 loc) · 1.79 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"devDependencies": {
"remark-cli": "^12.0.0",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.0",
"remark-lint": "^9.1.2",
"remark-lint-checkbox-content-indent": "^4.1.2",
"remark-lint-maximum-line-length": "^3.1.3",
"remark-preset-lint-markdown-style-guide": "^5.1.3",
"remark-preset-lint-recommended": "^6.1.3",
"stylelint": "^15.11.0",
"stylelint-config-standard": "^34.0.0",
"stylelint-scss": "^5.3.2",
"stylelint-csstree-validator": "^3.0.0"
},
"remarkConfig": {
"settings": {
"bullet": "-",
"fence": "`",
"fences": "true",
"listItemIndent": "mixed",
"incrementListMarker": "true",
"resourceLink": "true",
"rule": "-"
},
"plugins": [
"remark-gfm",
"remark-frontmatter",
"remark-preset-lint-markdown-style-guide",
"remark-preset-lint-recommended",
"remark-lint-list-item-content-indent",
"remark-lint-checkbox-content-indent",
[
"lint-fenced-code-marker",
"`"
],
[
"lint-list-item-indent",
"mixed"
],
[
"lint-maximum-line-length",
120
],
[
"lint-ordered-list-marker-style",
"."
],
[
"lint-ordered-list-marker-value",
"ordered"
],
[
"lint-unordered-list-marker-style",
"consistent"
]
]
},
"stylelint": {
"extends": "stylelint-config-standard",
"ignoreFiles": [
"docs/_build/**",
"docs/build/**"
],
"rules": {
"block-no-empty": null,
"color-no-invalid-hex": true,
"color-hex-case": "upper",
"color-hex-length": "long",
"indentation": [
4
],
"property-no-vendor-prefix": null,
"no-descending-specificity": null
}
}
}