• Chris Kay's avatar
    build(hooks): add Husky configuration · ba39362f
    Chris Kay authored
    
    Husky is a tool for managing Git hooks within the repository itself.
    Traditionally, commit hooks need to be manually installed on a per-user
    basis, but Husky allows us to install these hooks either automatically
    when `npm install` is invoked within the repository, or manually with
    `npx husky install`.
    
    This will become useful for us in the next few patches when we begin
    introducing tools for enforcing a commit message style.
    
    Change-Id: I64cae147e9ea910347416cfe0bcc4652ec9b4830
    Signed-off-by: default avatarChris Kay <chris.kay@arm.com>
    ba39362f
.gitignore 894 Bytes
# Ignore miscellaneous files
cscope.*
*.swp
*.patch
*~
.project
.cproject

# Ignore build directory
build/

# Ignore build products from tools
tools/**/*.o
tools/renesas/rcar_layout_create/*.bin
tools/renesas/rcar_layout_create/*.srec
tools/renesas/rcar_layout_create/*.map
tools/renesas/rcar_layout_create/*.elf
tools/renesas/rzg_layout_create/*.bin
tools/renesas/rzg_layout_create/*.srec
tools/renesas/rzg_layout_create/*.map
tools/renesas/rzg_layout_create/*.elf
tools/fiptool/fiptool
tools/fiptool/fiptool.exe
tools/cert_create/src/*.o
tools/cert_create/src/**/*.o
tools/cert_create/cert_create
tools/cert_create/cert_create.exe
tools/marvell/doimage/doimage
tools/amlogic/doimage
tools/stm32image/*.o
tools/stm32image/stm32image
tools/stm32image/stm32image.exe
tools/sptool/sptool
tools/sptool/sptool.exe

# GNU GLOBAL files
GPATH
GRTAGS
GSYMS
GTAGS

# Ctags
tags

# Node.js
node_modules/