mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-05 01:50:56 +07:00
[spellchecker] IJPL-33181 The fstring in the comment is recognized as a typo
GitOrigin-RevId: e131ad867debceca86f5499e6a13214c5877d12f
This commit is contained in:
committed by
intellij-monorepo-bot
parent
236d302d9d
commit
b91c9ab0cb
@@ -106,6 +106,9 @@ public class PlainTextSplitter extends BaseSplitter {
|
||||
else if (word.startsWith(JWT_COMMON_PREFIX) && JWT_PATTERN.matcher(word).matches()) {
|
||||
toCheck = emptyList();
|
||||
}
|
||||
else if (word.startsWith("f'")) {
|
||||
toCheck = List.of(new TextRange(wRange.getStartOffset() + 2, wRange.getEndOffset()));
|
||||
}
|
||||
else if (wordLength == MD5_HEX_LENGTH && MD5_HEX_PATTERN.matcher(word).matches() ||
|
||||
wordLength == SHA1_HEX_LENGTH && SHA1_HEX_PATTERN.matcher(word).matches() ||
|
||||
wordLength == SHA256_HEX_LENGTH && SHA256_HEX_PATTERN.matcher(word).matches() ||
|
||||
|
||||
@@ -28,6 +28,8 @@ class SPITest1 {
|
||||
/*
|
||||
<TYPO descr="Typo: In word 'werty'">werty</TYPO> within method
|
||||
*/
|
||||
// print(f'hello world')
|
||||
// print(f'<TYPO descr="Typo: In word 'typpoo'">typpoo</TYPO> world')
|
||||
// single line <TYPO descr="Typo: In word 'newss'">newss</TYPO> within method
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user