Ahead of upgrading to husky v5, adding the shell file location to .gitignore to prevent it from randomly showing up when devs checkout older branches. Beginning in v5, husky places its shell files in a directory at `.husky/_` so these are placed in the .gitignore to prevent being commited or tracked. PR Close #39388
57 lines
837 B
Plaintext
57 lines
837 B
Plaintext
.DS_STORE
|
|
|
|
/dist/
|
|
/bazel-out
|
|
/integration/bazel/bazel-*
|
|
*.log
|
|
node_modules
|
|
|
|
# Include when developing application packages.
|
|
pubspec.lock
|
|
.c9
|
|
.idea/
|
|
.devcontainer/*
|
|
!.devcontainer/README.md
|
|
!.devcontainer/recommended-devcontainer.json
|
|
!.devcontainer/recommended-Dockerfile
|
|
.settings/
|
|
.vscode/launch.json
|
|
.vscode/settings.json
|
|
.vscode/tasks.json
|
|
*.swo
|
|
modules/.settings
|
|
modules/.vscode
|
|
.vimrc
|
|
.nvimrc
|
|
|
|
# Don't check in secret files
|
|
*secret.js
|
|
|
|
# Ignore npm/yarn debug log
|
|
npm-debug.log
|
|
yarn-error.log
|
|
|
|
# build-analytics
|
|
.build-analytics
|
|
|
|
# rollup-test output
|
|
/modules/rollup-test/dist/
|
|
|
|
# User specific bazel settings
|
|
.bazelrc.user
|
|
|
|
# User specific ng-dev settings
|
|
.ng-dev.user*
|
|
|
|
.notes.md
|
|
baseline.json
|
|
|
|
# Ignore .history for the xyz.local-history VSCode extension
|
|
.history
|
|
|
|
# CLDR data
|
|
tools/gulp-tasks/cldr/cldr-data/
|
|
|
|
# Husky
|
|
.husky/_
|