-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat!: Provide ESLint v9 flat configs (#238)
This is a major rewrite that migrates to ESLint v9, and exports a Flat Config instead of the legacy config. The package is also now a pure ESM package instead of CommonJS. README.md describes how to utilize the new config format. BREAKING CHANGE: There will be many changes in the lint results.
- Loading branch information
Showing
13 changed files
with
787 additions
and
1,220 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import eslintConfig from './dist/index.js' | ||
|
||
export default [ | ||
...eslintConfig, | ||
{ | ||
ignores: [ | ||
'dist', | ||
'.idea', | ||
'.vscode' | ||
] | ||
} | ||
] |
Oops, something went wrong.