-
Notifications
You must be signed in to change notification settings - Fork 103
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: #20 : comma spacing and #498 : Asian commas #891
Merged
+218
−1
Merged
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
9ab3ea2
feat: add doublewidth and ideographic Asian commas
hippietrail d4c5f9c
feat: work towards #212 for asian commans
hippietrail b8e6e0b
ongoing experiments
hippietrail c232046
work in progress
hippietrail fcc52d1
Merge branch 'master' of https://github.com/Automattic/harper into as…
hippietrail 706ff70
feat: fix multiple comma issues
hippietrail bcea267
`just format`
hippietrail 416f382
Merge branch 'master' of https://github.com/Automattic/harper into as…
hippietrail 6ac4569
fix: remove explicit static lifetimes of consts
hippietrail cef2bc6
fix: foreign language stripper; ignore asian commas in asian text
hippietrail bf7c2cd
fix: format
hippietrail f8dd68c
chore: make logic more succinct, readable, and hopefully rustier
hippietrail d93496a
refactor: even rustier
hippietrail b35e0e7
Merge branch 'master' of https://github.com/Automattic/harper into as…
hippietrail 126985e
fix: add color for punctuation as per Elijah's request
hippietrail File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,206 @@ | ||
use super::{Lint, LintKind, Linter, Suggestion}; | ||
use crate::{ | ||
Span, | ||
TokenKind::{Space, Unlintable, Word}, | ||
TokenStringExt, | ||
}; | ||
|
||
const MSG_SPACE_BEFORE: &str = "Don't use a space before a comma."; | ||
const MSG_AVOID_ASIAN: &str = "Avoid East Asian commas in English contexts."; | ||
const MSG_SPACE_AFTER: &str = "Use a space after a comma."; | ||
|
||
/// A linter that fixes common comma errors: | ||
/// No space after. | ||
/// Inappropriate space before. | ||
/// Asian commas instead of English commas. | ||
/// This linter only Asian commas anywhere, and wrong spacing of commas between words. | ||
/// Commas between numbers are used differently in different contexts and these are not checked: | ||
/// Lists of numbers: 1, 2, 3 | ||
/// Thousands separators: 1,000,000 | ||
/// Decimal points used mistakenly by Europeans: 3,14159 | ||
#[derive(Debug, Default)] | ||
pub struct CommaFixes; | ||
|
||
impl Linter for CommaFixes { | ||
fn lint(&mut self, document: &crate::Document) -> Vec<Lint> { | ||
let mut lints = Vec::new(); | ||
let source = document.get_source(); | ||
|
||
for ci in document.iter_comma_indices() { | ||
let mut toks = (None, None, document.get_token(ci).unwrap(), None, None); | ||
toks.0 = (ci >= 2).then(|| document.get_token(ci - 2).unwrap()); | ||
toks.1 = (ci >= 1).then(|| document.get_token(ci - 1).unwrap()); | ||
toks.3 = document.get_token(ci + 1); | ||
toks.4 = document.get_token(ci + 2); | ||
|
||
let kinds = ( | ||
toks.0.map(|t| &t.kind), | ||
toks.1.map(|t| &t.kind), | ||
*toks.2.span.get_content(source).first().unwrap(), | ||
toks.3.map(|t| &t.kind), | ||
toks.4.map(|t| &t.kind), | ||
); | ||
|
||
let (span, suggestion, message) = match kinds { | ||
(_, Some(Word(_)), '、' | ',', Some(Space(_)), Some(Word(_))) => ( | ||
toks.2.span, | ||
Suggestion::ReplaceWith(vec![',']), | ||
vec![MSG_AVOID_ASIAN], | ||
), | ||
|
||
(Some(Word(_)), Some(Space(_)), ',', Some(Space(_)), Some(Word(_))) => ( | ||
toks.1.unwrap().span, | ||
Suggestion::Remove, | ||
vec![MSG_SPACE_BEFORE], | ||
), | ||
|
||
(Some(Word(_)), Some(Space(_)), '、' | ',', Some(Space(_)), Some(Word(_))) => ( | ||
Span::new(toks.1.unwrap().span.start, toks.2.span.end), | ||
Suggestion::ReplaceWith(vec![',']), | ||
vec![MSG_SPACE_BEFORE, MSG_AVOID_ASIAN], | ||
), | ||
|
||
(_, Some(Word(_)), ',', Some(Word(_)), _) => ( | ||
toks.2.span, | ||
Suggestion::InsertAfter(vec![' ']), | ||
vec![MSG_SPACE_AFTER], | ||
), | ||
|
||
(_, Some(Word(_)), '、' | ',', Some(Word(_)), _) => ( | ||
toks.2.span, | ||
Suggestion::ReplaceWith(vec![',', ' ']), | ||
vec![MSG_AVOID_ASIAN, MSG_SPACE_AFTER], | ||
), | ||
|
||
(Some(Word(_)), Some(Space(_)), ',', Some(Word(_)), _) => ( | ||
Span::new(toks.1.unwrap().span.start, toks.2.span.end), | ||
Suggestion::ReplaceWith(vec![',', ' ']), | ||
vec![MSG_SPACE_BEFORE, MSG_SPACE_AFTER], | ||
), | ||
|
||
(Some(Word(_)), Some(Space(_)), '、' | ',', Some(Word(_)), _) => ( | ||
Span::new(toks.1.unwrap().span.start, toks.2.span.end), | ||
Suggestion::ReplaceWith(vec![',', ' ']), | ||
vec![MSG_SPACE_BEFORE, MSG_AVOID_ASIAN, MSG_SPACE_AFTER], | ||
), | ||
|
||
// Handles Asian commas in all other contexts | ||
// Unlintable is used for non-English tokens to prevent changing commas in CJK text | ||
(_, Some(Unlintable), '、' | ',', _, _) => continue, | ||
(_, _, '、' | ',', Some(Unlintable), _) => continue, | ||
|
||
(_, _, '、' | ',', _, _) => ( | ||
toks.2.span, | ||
Suggestion::ReplaceWith(vec![',']), | ||
vec![MSG_AVOID_ASIAN], | ||
), | ||
|
||
_ => continue, | ||
}; | ||
|
||
lints.push(Lint { | ||
span, | ||
lint_kind: LintKind::Punctuation, | ||
suggestions: vec![suggestion], | ||
message: message.join(" "), | ||
priority: 32, | ||
}); | ||
} | ||
|
||
lints | ||
} | ||
|
||
fn description(&self) -> &'static str { | ||
"Fix common comma errors such as no space after, erroneous space before, etc, Asian commas instead of English commas, etc." | ||
} | ||
} | ||
|
||
#[cfg(test)] | ||
mod tests { | ||
use super::CommaFixes; | ||
use crate::linting::tests::{assert_lint_count, assert_suggestion_result}; | ||
|
||
#[test] | ||
fn allows_english_comma_atomic() { | ||
assert_lint_count(",", CommaFixes, 0); | ||
} | ||
|
||
#[test] | ||
fn flags_fullwidth_comma_atomic() { | ||
assert_lint_count(",", CommaFixes, 1); | ||
} | ||
|
||
#[test] | ||
fn flags_ideographic_comma_atomic() { | ||
assert_lint_count("、", CommaFixes, 1); | ||
} | ||
|
||
#[test] | ||
fn corrects_fullwidth_comma_real_world() { | ||
assert_suggestion_result( | ||
"higher 2 bits of the number of nodes, whether abandoned or not decided by .index section", | ||
CommaFixes, | ||
"higher 2 bits of the number of nodes, whether abandoned or not decided by .index section", | ||
); | ||
} | ||
|
||
#[test] | ||
fn corrects_ideographic_comma_real_world() { | ||
assert_suggestion_result("cout、endl、string", CommaFixes, "cout, endl, string") | ||
} | ||
|
||
#[test] | ||
fn doesnt_flag_comma_space_between_words() { | ||
assert_lint_count("foo, bar", CommaFixes, 0); | ||
} | ||
|
||
#[test] | ||
fn flags_fullwidth_comma_space_between_words() { | ||
assert_lint_count("foo, bar", CommaFixes, 1); | ||
} | ||
|
||
#[test] | ||
fn flags_ideographic_comma_space_between_words() { | ||
assert_lint_count("foo、 bar", CommaFixes, 1); | ||
} | ||
|
||
#[test] | ||
fn doesnt_flag_semicolon_space_between_words() { | ||
assert_lint_count("foo; bar", CommaFixes, 0); | ||
} | ||
|
||
#[test] | ||
fn corrects_comma_between_words_with_no_space() { | ||
assert_suggestion_result("foo,bar", CommaFixes, "foo, bar") | ||
} | ||
|
||
#[test] | ||
fn corrects_asian_comma_between_words_with_no_space() { | ||
assert_suggestion_result("foo,bar", CommaFixes, "foo, bar") | ||
} | ||
|
||
#[test] | ||
fn corrects_space_on_wrong_side_of_comma_between_words() { | ||
assert_suggestion_result("foo ,bar", CommaFixes, "foo, bar") | ||
} | ||
|
||
#[test] | ||
fn corrects_comma_on_wrong_side_of_asian_comma_between_words() { | ||
assert_suggestion_result("foo ,bar", CommaFixes, "foo, bar") | ||
} | ||
|
||
#[test] | ||
fn corrects_comma_between_words_with_space_on_both_sides() { | ||
assert_suggestion_result("foo , bar", CommaFixes, "foo, bar") | ||
} | ||
|
||
#[test] | ||
fn corrects_asian_comma_between_words_with_space_on_both_sides() { | ||
assert_suggestion_result("foo 、 bar", CommaFixes, "foo, bar") | ||
} | ||
|
||
#[test] | ||
fn doesnt_correct_comma_between_non_english_tokens() { | ||
assert_lint_count("严禁采摘花、 果、叶,挖掘树根、草药!", CommaFixes, 0); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -97,6 +97,8 @@ impl Punctuation { | |
':' => Punctuation::Colon, | ||
';' => Punctuation::Semicolon, | ||
',' => Punctuation::Comma, | ||
'、' => Punctuation::Comma, | ||
',' => Punctuation::Comma, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You may want to update |
||
'-' => Punctuation::Hyphen, | ||
'[' => Punctuation::OpenSquare, | ||
']' => Punctuation::CloseSquare, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There are switch cases in the JS code that must be updated to reflect this change.
I'd fuzzy search for "Miscellaneous".
In the future I'd like to make sure the precommit tests fail when these other locations aren't updated.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Where can I test these colours? It seems
just precommit
andjust test
have once again stopped working on my system. I'll just commit it and see...