Skip to content

Commit e482cef

Browse files
authored
Merge pull request #168 from ecmwf-actions/dependabot/npm_and_yarn/eslint-9.20.1
Bump eslint from 8.41.0 to 9.20.1
2 parents e50b51e + a15f244 commit e482cef

File tree

3 files changed

+1605
-606
lines changed

3 files changed

+1605
-606
lines changed

eslint.config.js

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
// eslint.config.js
2+
import yaml from 'eslint-plugin-yaml';
3+
import yamlParser from 'yaml-eslint-parser';
4+
5+
export default [
6+
{
7+
files: ["**/*.yml"],
8+
plugins: {
9+
yaml
10+
},
11+
languageOptions: {
12+
parser: yamlParser
13+
},
14+
rules: {
15+
// Add any YAML-specific rules here if needed
16+
}
17+
},
18+
];

0 commit comments

Comments
 (0)