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 /test/language/albanian-transforms.test.js | |
parent | b3f54747eb2694bdc90bce72e5532e99d374ef08 (diff) |
Allow trailing commas in ESLint (#1013)
* Update comma-dangle rule
* Fix dangling commas
Diffstat (limited to 'test/language/albanian-transforms.test.js')
-rw-r--r-- | test/language/albanian-transforms.test.js | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/test/language/albanian-transforms.test.js b/test/language/albanian-transforms.test.js index f99307c4..24fa5cde 100644 --- a/test/language/albanian-transforms.test.js +++ b/test/language/albanian-transforms.test.js @@ -124,8 +124,8 @@ const tests = [ {term: 'kujtohem', source: 'kujtohuni', rule: 'v', reasons: ['imperative second-person plural present']}, {term: 'kthej', source: 'kthye', rule: 'v', reasons: ['aorist third-person singular indicative']}, - {term: 'shkëlqej', source: 'shkëlqyer', rule: 'v', reasons: ['participle']} - ] + {term: 'shkëlqej', source: 'shkëlqyer', rule: 'v', reasons: ['participle']}, + ], }, { category: 'nouns', @@ -136,9 +136,9 @@ const tests = [ {term: 'gëzoj', source: 'gëzim', rule: 'v', reasons: ['nominalization']}, {term: 'zbuloj', source: 'zbulim', rule: 'v', reasons: ['nominalization']}, {term: 'përkthej', source: 'përkthim', rule: 'v', reasons: ['nominalization']}, - {term: 'lëviz', source: 'lëvizje', rule: 'v', reasons: ['nominalization']} - ] - } + {term: 'lëviz', source: 'lëvizje', rule: 'v', reasons: ['nominalization']}, + ], + }, ]; /* eslint-enable @stylistic/no-multi-spaces */ |