diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2024-02-16 19:37:01 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-17 00:37:01 +0000 |
commit | 4e77741d22778bd09b772fc53f1cbd64107e3d24 (patch) | |
tree | e8010d42ccba5341afd98177d3c1d69d856cbcbd /ext/js/language/ja/japanese.js | |
parent | 1e69210b53151f31140bb1fbdc9f3d71fa181630 (diff) |
Even more eslint rules (#696)
* capitalized-comments
* Turn rules on
* Add miscellaneous rules
* More rules
Diffstat (limited to 'ext/js/language/ja/japanese.js')
-rw-r--r-- | ext/js/language/ja/japanese.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/js/language/ja/japanese.js b/ext/js/language/ja/japanese.js index 818daa0b..2c9a1f7f 100644 --- a/ext/js/language/ja/japanese.js +++ b/ext/js/language/ja/japanese.js @@ -557,17 +557,17 @@ export function convertHalfWidthKanaToFullWidth(text, sourceMap = null) { let index = 0; switch (text.charCodeAt(i + 1)) { - case 0xff9e: // dakuten + case 0xff9e: // Dakuten index = 1; break; - case 0xff9f: // handakuten + case 0xff9f: // Handakuten index = 2; break; } let c2 = mapping[index]; if (index > 0) { - if (c2 === '-') { // invalid + if (c2 === '-') { // Invalid index = 0; c2 = mapping[0]; } else { |