From e7964668981a0c43f80bfdda857adcba48577e79 Mon Sep 17 00:00:00 2001 From: Patrice Chalin Date: Sun, 5 Nov 2023 09:37:48 -0500 Subject: [PATCH] [CI] textlint terminology pattern for .NET capitalization (#3495) Co-authored-by: Phillip Carter --- .textlintrc.json | 3 +-- content/en/blog/2022/v1.0-trio.md | 2 +- package.json | 2 +- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.textlintrc.json b/.textlintrc.json index a6710c8f8989..4999d1335a4f 100644 --- a/.textlintrc.json +++ b/.textlintrc.json @@ -105,8 +105,7 @@ "YouTube", "Zend", "Zipkin", - ["\\.net", ".NET"], - ["(?<=\\.)net\\b", "NET"], + ["(?<=(^|\\s))(?:\bdot|\\.)net\\b", ".NET"], ["3rd[- ]party", "third-party"], ["cpp", "C++"], ["dotnet", ".NET"], diff --git a/content/en/blog/2022/v1.0-trio.md b/content/en/blog/2022/v1.0-trio.md index 8ac55b237755..b91d361ba831 100644 --- a/content/en/blog/2022/v1.0-trio.md +++ b/content/en/blog/2022/v1.0-trio.md @@ -7,7 +7,7 @@ canonical_url: https://medium.com/opentelemetry/opentelemetry-erlang-elixir-java We are kicking off the new year with a bang! In the last couple months, three new languages (Ruby, JavaScript, and Erlang/Elixir) have had their first 1.0 -releases, joining the existing GA releases from C++, Go, Java, .Net, Python and +releases, joining the existing GA releases from C++, Go, Java, .NET, Python and Swift. Read all the details from the [announcement][]. [announcement]: {{% param canonical_url %}} diff --git a/package.json b/package.json index 09cea4096a02..5e72b3d9099e 100644 --- a/package.json +++ b/package.json @@ -39,7 +39,7 @@ "check:links": "npm run _check:links", "check:markdown": "npx gulp lint-md", "check:spelling": "npx cspell --no-progress -c .vscode/cspell.json content data 'layouts/**/*.md'", - "check:text": "npm run _check:text", + "check:text": "npm run _check:text -- ", "check": "npm run seq -- $(npm run -s _list:check:*)", "clean": "make clean", "cp:spec": "./scripts/content-modules/cp-pages.sh",