From ed7476300f9a650f912cd4606760a86da931ed9a Mon Sep 17 00:00:00 2001 From: Alejandro Santiago Date: Mon, 19 Feb 2024 14:00:47 +0000 Subject: [PATCH 01/21] ci: add spell_checker --- .github/workflows/spell_checker.yaml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/spell_checker.yaml diff --git a/.github/workflows/spell_checker.yaml b/.github/workflows/spell_checker.yaml new file mode 100644 index 0000000..2f529a9 --- /dev/null +++ b/.github/workflows/spell_checker.yaml @@ -0,0 +1,18 @@ +name: spell_checker + +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + +on: [push, pull_request] + +jobs: + test: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: zwaldowski/cspell-action@v1 + with: + paths: "**/*.{md,dart}" + config: .github/cspell.json + exclude: ".gitignore **.gen.dart **.g.dart" From f6d7b101c5f3397fdadc270f2c6317a176c1c91f Mon Sep 17 00:00:00 2001 From: Alejandro Santiago Date: Mon, 19 Feb 2024 14:08:35 +0000 Subject: [PATCH 02/21] chore: define dart_dictionary.txt --- .github/.cspell/dart_dictionary.txt | 7 +++++++ .github/cspell.json | 13 ++++++------- 2 files changed, 13 insertions(+), 7 deletions(-) create mode 100644 .github/.cspell/dart_dictionary.txt diff --git a/.github/.cspell/dart_dictionary.txt b/.github/.cspell/dart_dictionary.txt new file mode 100644 index 0000000..9623df8 --- /dev/null +++ b/.github/.cspell/dart_dictionary.txt @@ -0,0 +1,7 @@ +# keywords/terms specific to the Dart/Flutter ecosystem +audioplayers # A Flutter plugin to play multiple simultaneously audio files. +cupertino # Flutter module containing iOS-style widgets +LTWH # From Flutter, abbreviation left, top, width and height. +mockingjay # A Flutter package for mocking navigation. +mocktail # A Dart mock package. +unawaited # A Dart function to explicitly ignore a future. \ No newline at end of file diff --git a/.github/cspell.json b/.github/cspell.json index f82ee7e..4d3170c 100644 --- a/.github/cspell.json +++ b/.github/cspell.json @@ -12,14 +12,13 @@ "name": "vgv_forbidden", "path": "https://raw.githubusercontent.com/verygoodopensource/very_good_dictionaries/main/forbidden.txt", "description": "Forbidden VGV Spellings" + }, + { + "name": "dart_dictionary", + "path": "./.cspell/dart_dictionary.txt", + "addWords": true } ], "useGitignore": true, - "words": [ - "Contador", - "localizable", - "mostrado", - "página", - "Texto" - ] + "words": ["Contador", "localizable", "mostrado", "página", "Texto"] } From d877f4713e5efff2cdbac4e3041233d46faeedcd Mon Sep 17 00:00:00 2001 From: Alejandro Santiago Date: Mon, 19 Feb 2024 14:10:55 +0000 Subject: [PATCH 03/21] chore: update dart_dictionary.txt --- .github/.cspell/dart_dictionary.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/.cspell/dart_dictionary.txt b/.github/.cspell/dart_dictionary.txt index 9623df8..66ece31 100644 --- a/.github/.cspell/dart_dictionary.txt +++ b/.github/.cspell/dart_dictionary.txt @@ -1,6 +1,6 @@ -# keywords/terms specific to the Dart/Flutter ecosystem +# Keywords or terms specific to the Dart/Flutter ecosystem: audioplayers # A Flutter plugin to play multiple simultaneously audio files. -cupertino # Flutter module containing iOS-style widgets +cupertino # Flutter module containing iOS-style widgets. LTWH # From Flutter, abbreviation left, top, width and height. mockingjay # A Flutter package for mocking navigation. mocktail # A Dart mock package. From 3939dae8040640aa97b3ceccf9e53cf2da44fa61 Mon Sep 17 00:00:00 2001 From: Alejandro Santiago Date: Mon, 19 Feb 2024 14:11:56 +0000 Subject: [PATCH 04/21] ci: update cspell.json --- .github/cspell.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/cspell.json b/.github/cspell.json index 4d3170c..9d8729b 100644 --- a/.github/cspell.json +++ b/.github/cspell.json @@ -19,6 +19,5 @@ "addWords": true } ], - "useGitignore": true, - "words": ["Contador", "localizable", "mostrado", "página", "Texto"] + "useGitignore": true } From b9084d4d088b10d5db3bbf4b6bbf294fccd1541b Mon Sep 17 00:00:00 2001 From: Alejandro Santiago Date: Mon, 19 Feb 2024 14:12:25 +0000 Subject: [PATCH 05/21] ci: add dart_dictionary --- .github/cspell.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/cspell.json b/.github/cspell.json index 9d8729b..9082898 100644 --- a/.github/cspell.json +++ b/.github/cspell.json @@ -1,7 +1,7 @@ { "version": "0.2", "$schema": "https://raw.githubusercontent.com/streetsidesoftware/cspell/main/cspell.schema.json", - "dictionaries": ["vgv_allowed", "vgv_forbidden"], + "dictionaries": ["vgv_allowed", "vgv_forbidden", "dart_dictionary"], "dictionaryDefinitions": [ { "name": "vgv_allowed", From ec9cec1779a52f746dfd0c10d2f9b861f3811e8e Mon Sep 17 00:00:00 2001 From: Alejandro Santiago Date: Mon, 19 Feb 2024 14:13:03 +0000 Subject: [PATCH 06/21] ci: enabled and english --- .github/cspell.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/cspell.json b/.github/cspell.json index 9082898..a4d0efd 100644 --- a/.github/cspell.json +++ b/.github/cspell.json @@ -1,6 +1,8 @@ { "version": "0.2", "$schema": "https://raw.githubusercontent.com/streetsidesoftware/cspell/main/cspell.schema.json", + "enabled": true, + "language": "en", "dictionaries": ["vgv_allowed", "vgv_forbidden", "dart_dictionary"], "dictionaryDefinitions": [ { From 7022f7f6e3e19d815afc143ef0e6866b974286f5 Mon Sep 17 00:00:00 2001 From: Alejandro Santiago Date: Mon, 19 Feb 2024 14:19:56 +0000 Subject: [PATCH 07/21] ci: add words_dictionary --- .github/.cspell/dart_dictionary.txt | 2 ++ .github/.cspell/words_dictionary.txt | 4 ++++ .github/cspell.json | 12 +++++++++++- 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 .github/.cspell/words_dictionary.txt diff --git a/.github/.cspell/dart_dictionary.txt b/.github/.cspell/dart_dictionary.txt index 66ece31..277bd19 100644 --- a/.github/.cspell/dart_dictionary.txt +++ b/.github/.cspell/dart_dictionary.txt @@ -1,7 +1,9 @@ # Keywords or terms specific to the Dart/Flutter ecosystem: audioplayers # A Flutter plugin to play multiple simultaneously audio files. cupertino # Flutter module containing iOS-style widgets. +endtemplate # Dart doc macro used to end a reusable piece of documentation. LTWH # From Flutter, abbreviation left, top, width and height. mockingjay # A Flutter package for mocking navigation. mocktail # A Dart mock package. +pubspec # File name where all the package metadata goes in. unawaited # A Dart function to explicitly ignore a future. \ No newline at end of file diff --git a/.github/.cspell/words_dictionary.txt b/.github/.cspell/words_dictionary.txt new file mode 100644 index 0000000..60cbc22 --- /dev/null +++ b/.github/.cspell/words_dictionary.txt @@ -0,0 +1,4 @@ +# Actual english words (or common abbreviations) missing from CSpell: +CLI # Abbreviation for Command Line Interface. +CLIs # Plural of the abbreviation for Command Line Interface. +dependabot # Automated dependency updates built into GitHub. \ No newline at end of file diff --git a/.github/cspell.json b/.github/cspell.json index a4d0efd..9ff3a53 100644 --- a/.github/cspell.json +++ b/.github/cspell.json @@ -3,7 +3,12 @@ "$schema": "https://raw.githubusercontent.com/streetsidesoftware/cspell/main/cspell.schema.json", "enabled": true, "language": "en", - "dictionaries": ["vgv_allowed", "vgv_forbidden", "dart_dictionary"], + "dictionaries": [ + "vgv_allowed", + "vgv_forbidden", + "dart_dictionary", + "words_dictionary" + ], "dictionaryDefinitions": [ { "name": "vgv_allowed", @@ -19,6 +24,11 @@ "name": "dart_dictionary", "path": "./.cspell/dart_dictionary.txt", "addWords": true + }, + { + "name": "words_dictionary", + "path": "./.cspell/words_dictionary.txt", + "addWords": true } ], "useGitignore": true From 6110e876237775c0c3fa9d4f5d62664226df6769 Mon Sep 17 00:00:00 2001 From: Alejandro Santiago Date: Mon, 19 Feb 2024 14:31:24 +0000 Subject: [PATCH 08/21] ci: dev_dictionary --- .github/.cspell/dev_dictionary.txt | 10 ++++++++++ .github/cspell.json | 6 ++++++ 2 files changed, 16 insertions(+) create mode 100644 .github/.cspell/dev_dictionary.txt diff --git a/.github/.cspell/dev_dictionary.txt b/.github/.cspell/dev_dictionary.txt new file mode 100644 index 0000000..52b9f51 --- /dev/null +++ b/.github/.cspell/dev_dictionary.txt @@ -0,0 +1,10 @@ +# Other phrases that are not words but are getting flagged. Typically contained in localization files or urls: +aplicación # "Application" in Spanish. +buen # "Good" in Spanish. +contador # "Counter" in Spanish. +empieza # "Begin" in Spanish. +inicial # "Initial" in Spanish. +juego # "Game" in Spanish. +mostrado # "Shown" in Spanish. +página # "Page" in Spanish. +texto # "Text" in Spanish. \ No newline at end of file diff --git a/.github/cspell.json b/.github/cspell.json index 9ff3a53..b1cb344 100644 --- a/.github/cspell.json +++ b/.github/cspell.json @@ -7,6 +7,7 @@ "vgv_allowed", "vgv_forbidden", "dart_dictionary", + "dev_dictionary", "words_dictionary" ], "dictionaryDefinitions": [ @@ -25,6 +26,11 @@ "path": "./.cspell/dart_dictionary.txt", "addWords": true }, + { + "name": "dev_dictionary", + "path": "./.cspell/dev_dictionary.txt", + "addWords": true + }, { "name": "words_dictionary", "path": "./.cspell/words_dictionary.txt", From 2066b915c367a0fd56e6b0af524b928619d78803 Mon Sep 17 00:00:00 2001 From: Alejandro Santiago Date: Mon, 19 Feb 2024 14:31:32 +0000 Subject: [PATCH 09/21] ci: more words in words_dictionary --- .github/.cspell/words_dictionary.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/.cspell/words_dictionary.txt b/.github/.cspell/words_dictionary.txt index 60cbc22..b82abfb 100644 --- a/.github/.cspell/words_dictionary.txt +++ b/.github/.cspell/words_dictionary.txt @@ -1,4 +1,6 @@ # Actual english words (or common abbreviations) missing from CSpell: CLI # Abbreviation for Command Line Interface. CLIs # Plural of the abbreviation for Command Line Interface. -dependabot # Automated dependency updates built into GitHub. \ No newline at end of file +dependabot # Automated dependency updates built into GitHub. +genhtml # Tool to generate an HTML view from LCOV coverage data files. +lcov # Graphical tool for displaying coverage reports. \ No newline at end of file From 8e4b4cc7277a52743dfb8376b120c9b2930398c8 Mon Sep 17 00:00:00 2001 From: Alejandro Santiago Date: Mon, 19 Feb 2024 14:32:43 +0000 Subject: [PATCH 10/21] docs: improved documentation comments --- .github/.cspell/dart_dictionary.txt | 2 +- .github/.cspell/dev_dictionary.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/.cspell/dart_dictionary.txt b/.github/.cspell/dart_dictionary.txt index 277bd19..2050b1e 100644 --- a/.github/.cspell/dart_dictionary.txt +++ b/.github/.cspell/dart_dictionary.txt @@ -1,4 +1,4 @@ -# Keywords or terms specific to the Dart/Flutter ecosystem: +# Keywords or terms specific to the Dart or Flutter ecosystem: audioplayers # A Flutter plugin to play multiple simultaneously audio files. cupertino # Flutter module containing iOS-style widgets. endtemplate # Dart doc macro used to end a reusable piece of documentation. diff --git a/.github/.cspell/dev_dictionary.txt b/.github/.cspell/dev_dictionary.txt index 52b9f51..1c6f780 100644 --- a/.github/.cspell/dev_dictionary.txt +++ b/.github/.cspell/dev_dictionary.txt @@ -1,4 +1,4 @@ -# Other phrases that are not words but are getting flagged. Typically contained in localization files or urls: +# Other phrases that are not words but are getting flagged. Typically contained in localization files or URLs: aplicación # "Application" in Spanish. buen # "Good" in Spanish. contador # "Counter" in Spanish. From 5987e8d971116c7e0ac826a3a99cdb7f00512ff4 Mon Sep 17 00:00:00 2001 From: Alejandro Santiago Date: Mon, 19 Feb 2024 14:40:40 +0000 Subject: [PATCH 11/21] chore: add more words --- .github/.cspell/dev_dictionary.txt | 2 ++ .github/.cspell/words_dictionary.txt | 10 +++++++++- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/.github/.cspell/dev_dictionary.txt b/.github/.cspell/dev_dictionary.txt index 1c6f780..9a8403a 100644 --- a/.github/.cspell/dev_dictionary.txt +++ b/.github/.cspell/dev_dictionary.txt @@ -1,9 +1,11 @@ # Other phrases that are not words but are getting flagged. Typically contained in localization files or URLs: aplicación # "Application" in Spanish. +botón # "Button" in Spanish. buen # "Good" in Spanish. contador # "Counter" in Spanish. empieza # "Begin" in Spanish. inicial # "Initial" in Spanish. +inicio # "Start" in Spanish. juego # "Game" in Spanish. mostrado # "Shown" in Spanish. página # "Page" in Spanish. diff --git a/.github/.cspell/words_dictionary.txt b/.github/.cspell/words_dictionary.txt index b82abfb..62c59ca 100644 --- a/.github/.cspell/words_dictionary.txt +++ b/.github/.cspell/words_dictionary.txt @@ -3,4 +3,12 @@ CLI # Abbreviation for Command Line Interface. CLIs # Plural of the abbreviation for Command Line Interface. dependabot # Automated dependency updates built into GitHub. genhtml # Tool to generate an HTML view from LCOV coverage data files. -lcov # Graphical tool for displaying coverage reports. \ No newline at end of file +gradlew # Wrapper tool that uses Gradle. +lcov # Graphical tool for displaying coverage reports. +negatable # Capable of being negated. +pngs # Abbreviation for an image format named Portable Network Graphics. +preload # Put information onto a system before it is used. +unmute # To allow to produce sound again. +xcode # Apple's integrated development environment. +xcworkspace # Abbreviation for Xcode workspace. +xcassets # Abbreviation for Xcode assets. \ No newline at end of file From 71cd1ffce2997737217089269d6afed6fc24f258 Mon Sep 17 00:00:00 2001 From: Alejandro Santiago Date: Mon, 19 Feb 2024 14:43:31 +0000 Subject: [PATCH 12/21] ci: add more words --- .github/.cspell/words_dictionary.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/.cspell/words_dictionary.txt b/.github/.cspell/words_dictionary.txt index 62c59ca..bdee289 100644 --- a/.github/.cspell/words_dictionary.txt +++ b/.github/.cspell/words_dictionary.txt @@ -5,10 +5,13 @@ dependabot # Automated dependency updates built into GitHub. genhtml # Tool to generate an HTML view from LCOV coverage data files. gradlew # Wrapper tool that uses Gradle. lcov # Graphical tool for displaying coverage reports. +localizable # Capable of being localized. negatable # Capable of being negated. pngs # Abbreviation for an image format named Portable Network Graphics. preload # Put information onto a system before it is used. -unmute # To allow to produce sound again. +recase # Casing once again. +theming # Give a particular theme or setting. +unmutes # To allow to produce sound again. xcode # Apple's integrated development environment. xcworkspace # Abbreviation for Xcode workspace. xcassets # Abbreviation for Xcode assets. \ No newline at end of file From f59ea4ff6594195a260ca738706abaa4cbfa75ea Mon Sep 17 00:00:00 2001 From: Alejandro Santiago Date: Mon, 19 Feb 2024 14:46:25 +0000 Subject: [PATCH 13/21] ci: add people_usernames --- .github/.cspell/people_usernames.txt | 2 ++ .github/cspell.json | 6 ++++++ 2 files changed, 8 insertions(+) create mode 100644 .github/.cspell/people_usernames.txt diff --git a/.github/.cspell/people_usernames.txt b/.github/.cspell/people_usernames.txt new file mode 100644 index 0000000..6a96e56 --- /dev/null +++ b/.github/.cspell/people_usernames.txt @@ -0,0 +1,2 @@ +# Specific people's names and/or usernames: +luan # Maintainer of the Flutter `audioplayers` plugin. \ No newline at end of file diff --git a/.github/cspell.json b/.github/cspell.json index b1cb344..c0ec73f 100644 --- a/.github/cspell.json +++ b/.github/cspell.json @@ -8,6 +8,7 @@ "vgv_forbidden", "dart_dictionary", "dev_dictionary", + "people_usernames", "words_dictionary" ], "dictionaryDefinitions": [ @@ -31,6 +32,11 @@ "path": "./.cspell/dev_dictionary.txt", "addWords": true }, + { + "name": "people_usernames", + "path": "./.cspell/people_usernames.txt", + "addWords": true + }, { "name": "words_dictionary", "path": "./.cspell/words_dictionary.txt", From 0f7713cdea5461ec48bdd5160f818f91d63d36a3 Mon Sep 17 00:00:00 2001 From: Alejandro Santiago Date: Mon, 19 Feb 2024 14:46:29 +0000 Subject: [PATCH 14/21] ci: add more words --- .github/.cspell/words_dictionary.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/.cspell/words_dictionary.txt b/.github/.cspell/words_dictionary.txt index bdee289..9432be4 100644 --- a/.github/.cspell/words_dictionary.txt +++ b/.github/.cspell/words_dictionary.txt @@ -10,6 +10,7 @@ negatable # Capable of being negated. pngs # Abbreviation for an image format named Portable Network Graphics. preload # Put information onto a system before it is used. recase # Casing once again. +roadmap # A plan or strategy intended to achieve a particular goal. theming # Give a particular theme or setting. unmutes # To allow to produce sound again. xcode # Apple's integrated development environment. From 63d0d35b7ddf9cffe2208ea08426109d300b5659 Mon Sep 17 00:00:00 2001 From: Alejandro Santiago Date: Mon, 19 Feb 2024 14:47:53 +0000 Subject: [PATCH 15/21] chore: solved "doesn't" typo --- very_good_dart_cli/CHANGELOG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/very_good_dart_cli/CHANGELOG.md b/very_good_dart_cli/CHANGELOG.md index c0121e7..a0d3a54 100644 --- a/very_good_dart_cli/CHANGELOG.md +++ b/very_good_dart_cli/CHANGELOG.md @@ -18,7 +18,7 @@ # 0.3.2 - feat: update workflows, add spellcheck -- fix: remove unused pub updater from test +- fix: remove unused pub updater from test # 0.3.1 @@ -34,7 +34,7 @@ # 0.2.2 -- fix: update silently fails when the sdk doesnt support most recent version +- fix: update silently fails when the sdk doesn't support most recent version # 0.2.1 From 5238deeb89e6a12a8f28f7c128aec3af4d523cad Mon Sep 17 00:00:00 2001 From: Alejandro Santiago Date: Mon, 19 Feb 2024 14:52:58 +0000 Subject: [PATCH 16/21] docs: more words --- .github/.cspell/words_dictionary.txt | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/.cspell/words_dictionary.txt b/.github/.cspell/words_dictionary.txt index 9432be4..e657d8e 100644 --- a/.github/.cspell/words_dictionary.txt +++ b/.github/.cspell/words_dictionary.txt @@ -1,18 +1,25 @@ # Actual english words (or common abbreviations) missing from CSpell: CLI # Abbreviation for Command Line Interface. CLIs # Plural of the abbreviation for Command Line Interface. +CLI's # Belonging to a CLI. dependabot # Automated dependency updates built into GitHub. +docusaurs # An optimized site generator in React. genhtml # Tool to generate an HTML view from LCOV coverage data files. gradlew # Wrapper tool that uses Gradle. lcov # Graphical tool for displaying coverage reports. localizable # Capable of being localized. negatable # Capable of being negated. +nojekyll # File to bypass Jekyll processing on GitHub. pngs # Abbreviation for an image format named Portable Network Graphics. preload # Put information onto a system before it is used. +prettierignore # Ignore file name for Prettier. +prettierrc # Configuration file name for Prettier. recase # Casing once again. roadmap # A plan or strategy intended to achieve a particular goal. +routable # Capable of being routed. theming # Give a particular theme or setting. unmutes # To allow to produce sound again. +verygood # Very Good, but without a space. xcode # Apple's integrated development environment. xcworkspace # Abbreviation for Xcode workspace. xcassets # Abbreviation for Xcode assets. \ No newline at end of file From fb1592a29a526a889616b16004e0d80d9dc2468a Mon Sep 17 00:00:00 2001 From: Alejandro Santiago Date: Mon, 19 Feb 2024 14:55:42 +0000 Subject: [PATCH 17/21] chore: ignore overview.md --- .github/cspell.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/cspell.json b/.github/cspell.json index c0ec73f..89667db 100644 --- a/.github/cspell.json +++ b/.github/cspell.json @@ -43,5 +43,8 @@ "addWords": true } ], - "useGitignore": true + "useGitignore": true, + "ignorePaths": [ + "very_good_docs_site/__brick__/{{project_name.snakeCase()}}/docs/overview.md" + ] } From 0d529d7dacf9d4fd86065b228115ebe211182852 Mon Sep 17 00:00:00 2001 From: Alejandro Santiago Date: Mon, 19 Feb 2024 14:56:49 +0000 Subject: [PATCH 18/21] ci: ignored index.tsx --- .github/cspell.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/cspell.json b/.github/cspell.json index 89667db..a43e549 100644 --- a/.github/cspell.json +++ b/.github/cspell.json @@ -45,6 +45,7 @@ ], "useGitignore": true, "ignorePaths": [ - "very_good_docs_site/__brick__/{{project_name.snakeCase()}}/docs/overview.md" + "very_good_docs_site/__brick__/{{project_name.snakeCase()}}/docs/overview.md", + "very_good_docs_site/__brick__/{{project_name.snakeCase()}}/src/pages/index.tsx" ] } From c89539d4cb47c1bbd21ffd2e94f4215390cd9edd Mon Sep 17 00:00:00 2001 From: Alejandro Santiago Date: Mon, 19 Feb 2024 14:57:57 +0000 Subject: [PATCH 19/21] ci: used * on ignorePaths --- .github/cspell.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/cspell.json b/.github/cspell.json index a43e549..6898300 100644 --- a/.github/cspell.json +++ b/.github/cspell.json @@ -45,7 +45,7 @@ ], "useGitignore": true, "ignorePaths": [ - "very_good_docs_site/__brick__/{{project_name.snakeCase()}}/docs/overview.md", - "very_good_docs_site/__brick__/{{project_name.snakeCase()}}/src/pages/index.tsx" + "very_good_docs_site/__brick__/*/docs/overview.md", + "very_good_docs_site/__brick__/*/src/pages/index.tsx" ] } From 59723a1be8c2decddb6d4be7818eb23f241c8549 Mon Sep 17 00:00:00 2001 From: Alejandro Santiago Date: Mon, 19 Feb 2024 15:04:38 +0000 Subject: [PATCH 20/21] docs: add words --- .github/.cspell/words_dictionary.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/.cspell/words_dictionary.txt b/.github/.cspell/words_dictionary.txt index e657d8e..f0bb4bf 100644 --- a/.github/.cspell/words_dictionary.txt +++ b/.github/.cspell/words_dictionary.txt @@ -18,6 +18,7 @@ recase # Casing once again. roadmap # A plan or strategy intended to achieve a particular goal. routable # Capable of being routed. theming # Give a particular theme or setting. +unicorn # A mythical animal. unmutes # To allow to produce sound again. verygood # Very Good, but without a space. xcode # Apple's integrated development environment. From c96a87e8d61a0c8eac88550b18caa83417e51ae8 Mon Sep 17 00:00:00 2001 From: Alejandro Santiago Date: Mon, 19 Feb 2024 15:05:43 +0000 Subject: [PATCH 21/21] docs: add nicorn --- .github/.cspell/words_dictionary.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/.cspell/words_dictionary.txt b/.github/.cspell/words_dictionary.txt index f0bb4bf..b8d5cc9 100644 --- a/.github/.cspell/words_dictionary.txt +++ b/.github/.cspell/words_dictionary.txt @@ -19,6 +19,7 @@ roadmap # A plan or strategy intended to achieve a particular goal. routable # Capable of being routed. theming # Give a particular theme or setting. unicorn # A mythical animal. +nicorn # "unicorn", but without the "u". unmutes # To allow to produce sound again. verygood # Very Good, but without a space. xcode # Apple's integrated development environment.