Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "minor",
"comment": "Update the configuration for import/no-extraneous-dependencies to includes all of the supported names for ESLint configuration files.",
"packageName": "@ni/eslint-config-javascript",
"email": "2351292+TrevorKarjanis@users.noreply.github.com",
"dependentChangeType": "patch"
}
8 changes: 7 additions & 1 deletion packages/eslint-config-javascript/lib/imports.js
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,13 @@ export const imports = defineConfig([{
'**/protractor.conf.*.js', // protractor config
'**/karma.conf.js', // karma config
'**/.eslintrc.js', // legacy eslint config
'**/eslint.config.js', // eslint config
// The following eslint.config.* files are supported by ESLint >=9.
'**/eslint.config.cjs',
'**/eslint.config.cts',
'**/eslint.config.js',
'**/eslint.config.mjs',
'**/eslint.config.mts',
'**/eslint.config.ts'
],
optionalDependencies: false,
}],
Expand Down