-
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.
chore(deps): update dependency @myrotvorets/eslint-config-myrotvorets…
…-ts to v3 (#302) * chore(deps): update dependency @myrotvorets/eslint-config-myrotvorets-ts to v3 * Update ESLint configuration --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Myrotvorets <[email protected]>
- Loading branch information
1 parent
e1bbe94
commit 6fb9ed2
Showing
6 changed files
with
516 additions
and
1,876 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,19 @@ | ||
import MyrotvoretsConfig from '@myrotvorets/eslint-config-myrotvorets-ts'; | ||
import MochaPlugin from 'eslint-plugin-mocha'; | ||
import globals from 'globals'; | ||
|
||
/** @type {import('eslint').Linter.Config[]} */ | ||
export default [ | ||
{ | ||
ignores: ['dist/**'], | ||
}, | ||
...MyrotvoretsConfig, | ||
MochaPlugin.configs.flat.recommended, | ||
{ | ||
languageOptions: { | ||
globals: { | ||
...globals.node, | ||
}, | ||
}, | ||
}, | ||
]; |
Oops, something went wrong.