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 /test/options-util.test.js | |
parent | 1e69210b53151f31140bb1fbdc9f3d71fa181630 (diff) |
Even more eslint rules (#696)
* capitalized-comments
* Turn rules on
* Add miscellaneous rules
* More rules
Diffstat (limited to 'test/options-util.test.js')
-rw-r--r-- | test/options-util.test.js | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/test/options-util.test.js b/test/options-util.test.js index a178aecb..3a1b1efb 100644 --- a/test/options-util.test.js +++ b/test/options-util.test.js @@ -702,7 +702,7 @@ describe('OptionsUtil', () => { const match = fileNameRegex.exec(fileName); if (match !== null) { updates.push({ - version: Number.parseInt(match[1]), + version: Number.parseInt(match[1], 10), changes: loadDataFile(path.join(templatesDirPath, match[0])) }); } @@ -846,7 +846,7 @@ describe('OptionsUtil', () => { {{~> (lookup . "marker") ~}} `.trimStart() }, - // glossary and glossary-brief update + // Glossary and glossary-brief update { oldVersion: 7, newVersion: 12, @@ -1238,7 +1238,7 @@ describe('OptionsUtil', () => { <<<UPDATE-ADDITIONS>>> {{~> (lookup . "marker") ~}}`.trimStart() }, - // block helper update: furigana and furiganaPlain + // Block helper update: furigana and furiganaPlain { oldVersion: 20, newVersion: 21, @@ -1326,7 +1326,7 @@ describe('OptionsUtil', () => { {{~> (lookup . "marker") ~}}`.trimStart() }, - // block helper update: formatGlossary + // Block helper update: formatGlossary { oldVersion: 20, newVersion: 21, @@ -1400,7 +1400,7 @@ describe('OptionsUtil', () => { {{~> (lookup . "marker") ~}}`.trimStart() }, - // block helper update: set and get + // Block helper update: set and get { oldVersion: 20, newVersion: 21, @@ -1502,7 +1502,7 @@ describe('OptionsUtil', () => { {{~> (lookup . "marker") ~}}`.trimStart() }, - // block helper update: hasMedia and getMedia + // Block helper update: hasMedia and getMedia { oldVersion: 20, newVersion: 21, @@ -1584,7 +1584,7 @@ describe('OptionsUtil', () => { {{~> (lookup . "marker") ~}}`.trimStart() }, - // block helper update: pronunciation + // Block helper update: pronunciation { oldVersion: 20, newVersion: 21, |