-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
36 lines (36 loc) · 1.59 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
{
"author": "Andrew Udvare <[email protected]>",
"devDependencies": {
"cspell": "^8.16.1",
"prettier": "^3.4.1",
"prettier-plugin-ini": "^1.3.0",
"prettier-plugin-sort-json": "^4.0.0",
"prettier-plugin-toml": "^2.0.1"
},
"license": "MIT",
"name": "instagram-archiver",
"prettier": {
"endOfLine": "lf",
"iniSpaceAroundEquals": true,
"jsonRecursiveSort": true,
"plugins": [
"prettier-plugin-ini",
"prettier-plugin-sort-json",
"prettier-plugin-toml"
],
"printWidth": 100,
"singleQuote": true
},
"repository": "[email protected]:Tatsh/instagram-archiver.git",
"scripts": {
"check-formatting": "yarn prettier -c './**/*.json' './**/*.md' './**/*.toml' './**/*.yml' && poetry run yapf -rd scripts",
"check-spelling": "yarn 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 './**/*.json' './**/*.md' './**/*.toml' './**/*.yml' && poetry run yapf -ri scripts",
"mypy": "poetry run mypy .",
"qa": "yarn shellcheck && yarn mypy && yarn ruff && yarn check-spelling && yarn check-formatting",
"ruff": "poetry run ruff check scripts",
"shellcheck": "shellcheck scripts/*.sh eclass/*.eclass ./*/*/*.ebuild net-dns/pihole-ftl/files/pihole-FTL x11-misc/mimeo/files/mimeo-completion.sh"
},
"version": "0.2.0"
}