We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d7f473a commit 423b046Copy full SHA for 423b046
.eslintrc.cjs
@@ -5,7 +5,6 @@ const cfg = {
5
const testOverrides = cfg.overrides.find((ovr) => ovr.files.find((f) => f.includes('.test.ts')));
6
testOverrides.rules['@typescript-eslint/no-floating-promises'] = 'off';
7
8
-
9
cfg.overrides.push({
10
/** Overrides for YAML */
11
files: ['*.yaml', '*.yml'],
@@ -18,7 +17,7 @@ cfg.overrides.push({
18
17
// Prettier will sometimes convert these to multiline, so be safe and always use multi
19
'yml/block-sequence': ['error', { singleline: 'always' }],
20
},
21
- parser: 'yaml-eslint-parser'
+ parser: 'yaml-eslint-parser',
22
});
23
24
module.exports = cfg;
0 commit comments