Skip to content

Commit 785413f

Browse files
committed
Release 0.29.1
harper-comments@0.29.1 harper-core@0.29.1 harper-html@0.29.1 harper-literate-haskell@0.29.1 harper-ls@0.29.1 harper-stats@0.29.1 harper-tree-sitter@0.29.1 harper-typst@0.29.1 Generated by cargo-workspaces
1 parent 2faa0e5 commit 785413f

File tree

11 files changed

+60
-18
lines changed

11 files changed

+60
-18
lines changed

Cargo.lock

+8-8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

harper-comments/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "harper-comments"
3-
version = "0.29.0"
3+
version = "0.29.1"
44
edition = "2024"
55
description = "The language checker for developers."
66
license = "Apache-2.0"

harper-core/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "harper-core"
3-
version = "0.29.0"
3+
version = "0.29.1"
44
edition = "2024"
55
description = "The language checker for developers."
66
license = "Apache-2.0"

harper-html/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "harper-html"
3-
version = "0.29.0"
3+
version = "0.29.1"
44
edition = "2024"
55
description = "The language checker for developers."
66
license = "Apache-2.0"

harper-literate-haskell/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "harper-literate-haskell"
3-
version = "0.29.0"
3+
version = "0.29.1"
44
edition = "2024"
55
description = "The language checker for developers."
66
license = "Apache-2.0"

harper-ls/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "harper-ls"
3-
version = "0.29.0"
3+
version = "0.29.1"
44
edition = "2024"
55
description = "The language checker for developers."
66
license = "Apache-2.0"

harper-stats/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "harper-stats"
3-
version = "0.29.0"
3+
version = "0.29.1"
44
edition = "2021"
55
description = "The language checker for developers."
66
license = "Apache-2.0"

harper-tree-sitter/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "harper-tree-sitter"
3-
version = "0.29.0"
3+
version = "0.29.1"
44
edition = "2024"
55
description = "The language checker for developers."
66
license = "Apache-2.0"

harper-typst/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "harper-typst"
3-
version = "0.29.0"
3+
version = "0.29.1"
44
edition = "2024"
55
description = "The language checker for developers."
66
license = "Apache-2.0"

packages/harper.js/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "harper.js",
3-
"version": "0.29.0",
3+
"version": "0.29.1",
44
"license": "Apache-2.0",
55
"author": "Elijah Potter",
66
"description": "The grammar checker for developers.",

packages/vscode-plugin/package.json

+43-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "harper",
33
"displayName": "Harper",
44
"description": "The grammar checker for developers",
5-
"version": "0.29.0",
5+
"version": "0.29.1",
66
"private": true,
77
"author": "Elijah Potter",
88
"publisher": "elijah-potter",
@@ -242,6 +242,12 @@
242242
"default": true,
243243
"description": "Corrects nonstandard `as early back as` to `as far back as`."
244244
},
245+
"harper.linters.AsWell": {
246+
"scope": "resource",
247+
"type": "boolean",
248+
"default": true,
249+
"description": "Corrects `aswell` to `as well`."
250+
},
245251
"harper.linters.AtFaceValue": {
246252
"scope": "resource",
247253
"type": "boolean",
@@ -362,6 +368,12 @@
362368
"default": true,
363369
"description": "Forgetting to capitalize personal pronouns, like \"I\" or \"I'm\" is one of the most common errors. This rule helps with that."
364370
},
371+
"harper.linters.CaseInPoint": {
372+
"scope": "resource",
373+
"type": "boolean",
374+
"default": true,
375+
"description": "Corrects `case and point` to `case in point`."
376+
},
365377
"harper.linters.CaseSensitive": {
366378
"scope": "resource",
367379
"type": "boolean",
@@ -770,6 +782,12 @@
770782
"default": true,
771783
"description": "Checks for the correct official name of the African country."
772784
},
785+
"harper.linters.HadGone": {
786+
"scope": "resource",
787+
"type": "boolean",
788+
"default": true,
789+
"description": "Corrects `had went` to `had gone`."
790+
},
773791
"harper.linters.HadOf": {
774792
"scope": "resource",
775793
"type": "boolean",
@@ -788,6 +806,24 @@
788806
"default": true,
789807
"description": "Corrects the eggcorn `half hazard` to `haphazard`, which properly means lacking organization or being random."
790808
},
809+
"harper.linters.HasGone": {
810+
"scope": "resource",
811+
"type": "boolean",
812+
"default": true,
813+
"description": "Corrects `has went` to `has gone`."
814+
},
815+
"harper.linters.HaveGone": {
816+
"scope": "resource",
817+
"type": "boolean",
818+
"default": true,
819+
"description": "Corrects `have went` to `have gone`."
820+
},
821+
"harper.linters.HavingGone": {
822+
"scope": "resource",
823+
"type": "boolean",
824+
"default": true,
825+
"description": "Corrects `having went` to `having gone`."
826+
},
791827
"harper.linters.Hedging": {
792828
"scope": "resource",
793829
"type": "boolean",
@@ -1040,6 +1076,12 @@
10401076
"default": true,
10411077
"description": "It's often hard to determine where the subject should go with the word `let`. This rule attempts to find common errors with redundancy and contractions that may lead to confusion for readers."
10421078
},
1079+
"harper.linters.LikeThePlague": {
1080+
"scope": "resource",
1081+
"type": "boolean",
1082+
"default": true,
1083+
"description": "Corrects `like a plague` to `like the plague`."
1084+
},
10431085
"harper.linters.Likewise": {
10441086
"scope": "resource",
10451087
"type": "boolean",

0 commit comments

Comments
 (0)