18 lines
488 B
Bash
Executable file
18 lines
488 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# Copyright (C) 2017-present Arctic Ice Studio <development@arcticicestudio.com>
|
|
# Copyright (C) 2017-present Sven Greb <development@svengreb.de>
|
|
#
|
|
# Project: Nord Visual Studio Code
|
|
# Repository: https://github.com/arcticicestudio/nord-visual-studio-code
|
|
# License: MIT
|
|
|
|
# Git "pre-commit" hook for husky.
|
|
#
|
|
# References:
|
|
# 1. https://github.com/typicode/husky
|
|
# 2. https://git-scm.com/docs/githooks#_pre_commit
|
|
|
|
. "$(dirname "$0")/_/husky.sh"
|
|
|
|
npm exec lint-staged
|