Skip to content

Commit f5e74ea

Browse files
authored
refactor: switch to eslint v9, eslint-config-eslint v11 (#217)
1 parent e94f31d commit f5e74ea

File tree

6 files changed

+825
-661
lines changed

6 files changed

+825
-661
lines changed

eslint.config.js

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,6 @@ module.exports = [
1111
{
1212
rules: {
1313
camelcase: ["error", { properties: "never" }],
14-
15-
// Remove after https://github.com/eslint/eslint/pull/17900 is included in new release
16-
"jsdoc/no-multi-asterisks": ["error", { allowWhitespace: true }]
1714
}
1815
},
1916
{
@@ -30,15 +27,7 @@ module.exports = [
3027
}
3128
},
3229
rules: {
33-
"n/no-unpublished-require": "off",
34-
"n/no-extraneous-require": [
35-
"error",
36-
{
37-
allowModules: [
38-
"@octokit/rest"
39-
]
40-
}
41-
]
30+
"n/no-unpublished-require": "off"
4231
}
4332
}
4433
];

0 commit comments

Comments
 (0)