-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
21 lines (21 loc) · 1.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "dotfiles",
"private": true,
"scripts": {
"prepare": "husky",
"lint": "npm run lint:shell && npm run lint:md",
"lint:md": "markdownlint-cli2 \"**/*.md\" \"#node_modules\"",
"lint:shell": "bash scripts/lint-shell.sh setup.sh bin/gitsummary bin/line-endings.sh lib/install_bin.sh lib/install_packages.sh lib/install_dotfiles.sh lib/install_fonts.sh lib/setup_git.sh dotfiles/.bash_profile dotfiles/.bashrc dotfiles/.profile dotfiles/.shell_common dotfiles/.zshrc dotfiles/.ohmyzshrc",
"lint:shell:staged": "lint-staged"
},
"devDependencies": {
"husky": "^9.1.7",
"lint-staged": "^17.2.0",
"markdownlint-cli2": "^0.23.1",
"shellcheck": "^4.1.0"
},
"lint-staged": {
"{setup.sh,bin/gitsummary,bin/line-endings.sh,lib/**/*.sh,dotfiles/.bash_profile,dotfiles/.bashrc,dotfiles/.profile,dotfiles/.shell_common,dotfiles/.zshrc,dotfiles/.ohmyzshrc}": "bash scripts/lint-shell.sh setup.sh bin/gitsummary bin/line-endings.sh lib/install_bin.sh lib/install_packages.sh lib/install_dotfiles.sh lib/install_fonts.sh lib/setup_git.sh dotfiles/.bash_profile dotfiles/.bashrc dotfiles/.profile dotfiles/.shell_common dotfiles/.zshrc dotfiles/.ohmyzshrc",
"**/*.md": "markdownlint-cli2"
}
}