We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fad29c3 commit ccde065Copy full SHA for ccde065
eslint.config.mjs
@@ -10,7 +10,7 @@ import yml from 'eslint-plugin-yml'
10
export default [
11
{ ignores: ['**/package-lock.json'] },
12
{
13
- files: ['**/*.js', '**/*.mjs'],
+ files: ['**/*.{js,mjs}'],
14
languageOptions: {
15
ecmaVersion: 'latest', sourceType: 'script',
16
globals: {
@@ -52,5 +52,5 @@ export default [
52
}
53
},
54
{ files: ['**/*.mjs'], languageOptions: { sourceType: 'module' }},
55
- { files: ['**/*.yaml, **/*.yml'], ...yml.configs['flat/standard'][1] }
+ { files: ['**/*.{yaml,yml}'], ...yml.configs['flat/standard'][1] }
56
]
0 commit comments