forked from ROOH/openclaw-mattermost
- Add .editorconfig, .prettierrc, .prettierignore, .gitignore - Add Makefile with fmt, fmt-check, secret-scan targets - Add package.json with prettier - Add tools/secret-scan.sh - Auto-format with prettier - make check passes clean
18 lines
250 B
Makefile
18 lines
250 B
Makefile
export NODE_ENV := development
|
|
|
|
.PHONY: check install fmt fmt-check secret-scan
|
|
|
|
check: install fmt-check secret-scan
|
|
|
|
install:
|
|
npm install
|
|
|
|
fmt:
|
|
npx prettier --write .
|
|
|
|
fmt-check:
|
|
npx prettier --check .
|
|
|
|
secret-scan:
|
|
bash tools/secret-scan.sh .
|