Skip to content

Commit 423b046

Browse files
committed
refactor: fix lint
1 parent d7f473a commit 423b046

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

.eslintrc.cjs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ const cfg = {
55
const testOverrides = cfg.overrides.find((ovr) => ovr.files.find((f) => f.includes('.test.ts')));
66
testOverrides.rules['@typescript-eslint/no-floating-promises'] = 'off';
77

8-
98
cfg.overrides.push({
109
/** Overrides for YAML */
1110
files: ['*.yaml', '*.yml'],
@@ -18,7 +17,7 @@ cfg.overrides.push({
1817
// Prettier will sometimes convert these to multiline, so be safe and always use multi
1918
'yml/block-sequence': ['error', { singleline: 'always' }],
2019
},
21-
parser: 'yaml-eslint-parser'
20+
parser: 'yaml-eslint-parser',
2221
});
2322

2423
module.exports = cfg;

0 commit comments

Comments
 (0)