From d82b7b725e866a44fe015dbc3123e36e2a4dbdfb Mon Sep 17 00:00:00 2001 From: thomasg Date: Thu, 11 Jun 2026 16:43:25 -0500 Subject: [PATCH] fix: restore repo-specific cspell ignore paths The June 7 Terraform repository sync overwrote this file with the shared org template, dropping the website-specific ignore paths (.docusaurus, static, package-lock.json, docs/project-quiver, ...). Terraform no longer manages this file's content (Arrow-air/tf-github#162), so this restore will stick. --- .cspell.config.yaml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.cspell.config.yaml b/.cspell.config.yaml index ccb7347..99d359d 100644 --- a/.cspell.config.yaml +++ b/.cspell.config.yaml @@ -16,9 +16,18 @@ ignoreRegExp: ignorePaths: - "node_modules" - "build" + - ".docusaurus" + - ".claude" + - ".make" - "*.css" - "*.svg" - "*/**Makefile" + - "package-lock.json" + - "static" + - "templates" + - "docs/project-quiver" + - "docs/*-test.mdx" + - "docs/kitchen-sink.md" - "target" - "logs" - "out"