-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.fixpackrc
51 lines (51 loc) · 965 Bytes
/
.fixpackrc
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
/**
* Defaults from:
* https://github.com/HenrikJoreteg/fixpack#configuration
*/
{
// will put these first in this order if present
"sortToTop": [
"name",
"description",
"version",
"author"
],
// will error if these not present
"required": [
"name",
"version"
],
// will warn if these not present
"warn": [
"description",
"author",
"repository",
"keywords",
"main",
"bugs",
"homepage",
"license"
],
// if `private: true` in package.json will use the next two lists instead
"requiredOnPrivate": [],
"warnOnPrivate": [
"name",
"version",
"description",
"main"
],
// sub items to sort by default
"sortedSubItems": [
"dependencies",
"devDependencies",
"jshintConfig",
"scripts",
"keywords"
],
// if you set quiet to true it won"t do output anything to the console
"quiet": false,
// files to scrub
"files": [
"package.json"
]
}