aboutsummaryrefslogtreecommitdiff
path: root/dev/generate-css-json.js
diff options
context:
space:
mode:
authortoasted-nutbread <toasted-nutbread@users.noreply.github.com>2024-02-14 22:26:29 -0500
committerGitHub <noreply@github.com>2024-02-15 03:26:29 +0000
commit6bf7b0055765c4f2011c9614753d6714dc09be65 (patch)
tree0e782ae66556eaa61a34d9f32d77c831b2443ce5 /dev/generate-css-json.js
parent7a4096240ce4faf70a785d047945388baa0daab3 (diff)
Eslint rule updates (#673)
* Install unicorn * Add rules * Fix issues * Install sonarjs * Set up rules * Fix issues * Install eslint-plugin-import and fix import extensions * Simplify permitted error names
Diffstat (limited to 'dev/generate-css-json.js')
-rw-r--r--dev/generate-css-json.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/dev/generate-css-json.js b/dev/generate-css-json.js
index 26bdfa64..a837c9e2 100644
--- a/dev/generate-css-json.js
+++ b/dev/generate-css-json.js
@@ -101,11 +101,11 @@ export function formatRulesJson(rules) {
for (const {selectors, styles} of rules) {
if (ruleIndex > 0) { result += ','; }
result += `\n${indent1}{\n${indent2}"selectors": `;
- if (selectors.length === 1) {
- result += `[${JSON.stringify(selectors[0], null, 4)}]`;
- } else {
- result += JSON.stringify(selectors, null, 4).replace(/\n/g, '\n' + indent2);
- }
+ result += (
+ selectors.length === 1 ?
+ `[${JSON.stringify(selectors[0], null, 4)}]` :
+ JSON.stringify(selectors, null, 4).replace(/\n/g, '\n' + indent2)
+ );
result += `,\n${indent2}"styles": [`;
let styleIndex = 0;
for (const [key, value] of styles) {