-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 917 Bytes
/
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
{
"name": "user-styles",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"lint": "stylelint",
"lint:wiki": "stylelint ./sites/wikipedia.org/index.user.styl",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"stylelint": "^14.16.1",
"stylelint-config-standard": "^29.0.0",
"stylelint-stylus": "^0.17.1"
},
"stylelint": {
"plugins": [
"stylelint-stylus"
],
"extends": [
"stylelint-config-standard",
"stylelint-stylus/standard"
],
"rules": {
"stylus/indentation": 4,
"stylus/property-no-unknown": null,
"stylus/no-eol-whitespace": null,
"selector-id-pattern": null,
"no-missing-end-of-source-newline": null,
"value-keyword-case": null,
"no-invalid-position-at-import-rule": null
}
}
}