From 140e3bf538b48b99291c20b91f39808c94dc2a53 Mon Sep 17 00:00:00 2001 From: Tyler Perkins Date: Mon, 4 Dec 2023 20:58:39 -0500 Subject: [PATCH] Add validation stuff --- .gitignore | 1 - .pre-commit-config.yaml | 26 +++++++++ README.md | 1 - setup.sh | 126 ++++++++++++++++++++++++++++++++++++++++ template/index.html | 1 - 5 files changed, 152 insertions(+), 3 deletions(-) create mode 100644 .pre-commit-config.yaml create mode 100755 setup.sh diff --git a/.gitignore b/.gitignore index f9f3198..a8ef221 100644 --- a/.gitignore +++ b/.gitignore @@ -312,4 +312,3 @@ dist .yarn/build-state.yml .yarn/install-state.gz .pnp.* - diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml new file mode 100644 index 0000000..279e5e4 --- /dev/null +++ b/.pre-commit-config.yaml @@ -0,0 +1,26 @@ +# See https://pre-commit.com for more information +# See https://pre-commit.com/hooks.html for more hooks +repos: +- repo: https://github.com/pre-commit/pre-commit-hooks + rev: v3.2.0 + hooks: + - id: trailing-whitespace + - id: end-of-file-fixer + - id: check-yaml + - id: check-xml + - id: check-json + - id: check-toml + - id: check-added-large-files + - id: check-case-conflict + - id: pretty-format-json + - id: check-symlinks + - id: detect-private-key + - id: sort-simple-yaml +- repo: https://github.com/Lucas-C/pre-commit-hooks + rev: v1.5.4 + hooks: + - id: remove-crlf +- repo: https://github.com/python-jsonschema/check-jsonschema + rev: 0.27.2 + hooks: + - id: check-drone-ci diff --git a/README.md b/README.md index 8bdcd23..e9dbf10 100644 --- a/README.md +++ b/README.md @@ -1,2 +1 @@ # FormMelon - diff --git a/setup.sh b/setup.sh new file mode 100755 index 0000000..b538f0e --- /dev/null +++ b/setup.sh @@ -0,0 +1,126 @@ +#!/bin/bash +# +# Generic script to setup the repository for local development + +echo "Installing pre-commit" +pip install pre-commit +pre-commit install + +echo "Installing commit-msg" + +HOOK_LOCATION=".git/hooks/commit-msg" +VERB_LOCATION=".git/hooks/verbs.txt" + +cat << 'EOF' > "$HOOK_LOCATION" +#!/bin/sh +# +# Git hook to check for semantic commit messages in the form mentioned here + +export VERB=$(cut -d ' ' -f1 < "$1") +(grep "$VERB" .git/hooks/verbs.txt > /dev/null) || (echo "Missing a verb"; exit 1) +EOF + +chmod +x $HOOK_LOCATION + +cat << 'EOF' > "$VERB_LOCATION" +Add +Update +Fix +Refactor +Remove +Implement +Enhance +Optimize +Revise +Adjust +Modify +Rewrite +Improve +Correct +Debug +Delete +Replace +Create +Design +Develop +Build +Configure +Resolve +Patch +Extend +Reduce +Increase +Simplify +Merge +Split +Release +Deploy +Test +Validate +Format +Organize +Reorganize +Rename +Repackage +Refine +Rework +Expand +Collapse +Integrate +Extract +Introduce +Finalize +Prepare +Generate +Convert +Upload +Download +Sync +Encrypt +Decrypt +Authenticate +Authorize +Invalidate +Sanitize +Analyze +Inspect +Probe +Examine +Index +Compress +Decompress +Archive +Restore +Save +Load +Export +Import +Visualize +Illustrate +Diagram +Plot +Map +Scan +Seek +Find +Discover +Track +Monitor +Observe +Watch +Alert +Notify +Log +Record +Report +Summarize +Detail +Document +Annotate +Comment +Explain +Clarify +Define +Enumerate +Stabilize +EOF diff --git a/template/index.html b/template/index.html index ba5dcf1..fa119b3 100644 --- a/template/index.html +++ b/template/index.html @@ -33,4 +33,3 @@ -