diff options
author | James Maa <jmaa@berkeley.edu> | 2024-05-31 08:06:52 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-31 15:06:52 +0000 |
commit | 76ca08bd59f0e8bfa1bb20ac813f48e7ab241265 (patch) | |
tree | bdba43d9ba704885383c7f308c6fe3f574c647c5 /ext/js/language/text-processors.js | |
parent | b3f54747eb2694bdc90bce72e5532e99d374ef08 (diff) |
Allow trailing commas in ESLint (#1013)
* Update comma-dangle rule
* Fix dangling commas
Diffstat (limited to 'ext/js/language/text-processors.js')
-rwxr-xr-x | ext/js/language/text-processors.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/js/language/text-processors.js b/ext/js/language/text-processors.js index e7855df2..3c016398 100755 --- a/ext/js/language/text-processors.js +++ b/ext/js/language/text-processors.js @@ -23,7 +23,7 @@ export const decapitalize = { name: 'Decapitalize text', description: 'CAPITALIZED TEXT → capitalized text', options: basicTextProcessorOptions, - process: (str, setting) => (setting ? str.toLowerCase() : str) + process: (str, setting) => (setting ? str.toLowerCase() : str), }; /** @type {import('language').TextProcessor<boolean>} */ @@ -31,7 +31,7 @@ export const capitalizeFirstLetter = { name: 'Capitalize first letter', description: 'lowercase text → Lowercase text', options: basicTextProcessorOptions, - process: (str, setting) => (setting ? str.charAt(0).toUpperCase() + str.slice(1) : str) + process: (str, setting) => (setting ? str.charAt(0).toUpperCase() + str.slice(1) : str), }; /** @@ -45,5 +45,5 @@ export const removeAlphabeticDiacritics = { name: 'Remove Alphabetic Diacritics', description: 'ἄήé -> αηe', options: basicTextProcessorOptions, - process: (str, setting) => (setting ? str.normalize('NFD').replace(/[\u0300-\u036f]/g, '') : str) + process: (str, setting) => (setting ? str.normalize('NFD').replace(/[\u0300-\u036f]/g, '') : str), }; |