Skip to content

Instantly share code, notes, and snippets.

View GatlenCulp's full-sized avatar
🦀
crab

Gatlen Culp GatlenCulp

🦀
crab
View GitHub Profile
@GatlenCulp
GatlenCulp / settings.json
Created January 23, 2025 23:52
Cursor Settings
{
"C_Cpp.updateChannel": "Insiders",
"[css]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
@GatlenCulp
GatlenCulp / .pre-commit-config.yaml
Last active November 29, 2025 23:45
Standalone .pre-commit-config from gatlens-opinionated-template
# Documentation: https://gatlenculp.github.io/gatlens-opinionated-template/precommit/
exclude: |
(?x)^(
.*\{\{.*\}\}.*| # Exclude any files with cookiecutter variables
docs/site/.*| # Exclude mkdocs compiled files
\.history/.*| # Exclude history files
.*cache.*/.*| # Exclude cache directories
.*venv.*/.*| # Exclude virtual environment directories
)$
fail_fast: true