-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.54 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
{
"author": "Andrew Udvare <[email protected]>",
"description": "Convert a registry path to a series of reg commands.",
"devDependencies": {
"@prettier/plugin-xml": "^3.4.1",
"cspell": "^8.16.0",
"markdownlint-cli2": "^0.15.0",
"prettier": "^3.3.3",
"prettier-plugin-ini": "^1.3.0",
"prettier-plugin-sort-json": "^4.0.0",
"prettier-plugin-toml": "^2.0.1"
},
"license": "MIT",
"name": "winprefs",
"prettier": {
"endOfLine": "lf",
"iniSpaceAroundEquals": true,
"jsonRecursiveSort": true,
"overrides": [
{
"files": "*.csproj",
"options": {
"parser": "xml",
"xmlWhitespaceSensitivity": "ignore"
}
}
],
"plugins": [
"@prettier/plugin-xml",
"prettier-plugin-ini",
"prettier-plugin-sort-json",
"prettier-plugin-toml"
],
"printWidth": 100,
"singleQuote": true,
"xmlSortAttributesByKey": true
},
"repository": "[email protected]:Tatsh/winprefs.git",
"scripts": {
"check-formatting": "prettier -c . && markdownlint-cli2 '**/*.md' '#node_modules'",
"check-spelling": "cspell --no-progress .",
"clean-dict": "r=(); while IFS=$\\n read -r w; do ! rg --no-config -qi. -g '!.vscode/dictionary.txt' -m 1 \"$w\" . && r+=(\"$w\"); done < ./.vscode/dictionary.txt; j=$(printf \"|%s\" \"${r[@]}\"); j=\"^(${j:1})$\"; grep -Ev \"${j}\" ./.vscode/dictionary.txt > new && mv new ./.vscode/dictionary.txt",
"format": "yarn prettier -w .",
"qa": "yarn check-spelling && yarn check-formatting"
},
"version": "0.3.2"
}