generated from remarkablemark/github-actions-setup-cli-template
-
-
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.
build(deps-dev): bump eslint from 8.57.0 to 9.9.1 (#399)
* build(deps-dev): bump eslint from 8.57.0 to 9.9.1 Bumps [eslint](https://github.com/eslint/eslint) from 8.57.0 to 9.9.1. - [Release notes](https://github.com/eslint/eslint/releases) - [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md) - [Commits](eslint/eslint@v8.57.0...v9.9.1) --- updated-dependencies: - dependency-name: eslint dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> * chore(eslint): migrate to eslint 9 https://eslint.org/docs/latest/use/configure/migration-guide --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Mark <[email protected]>
- Loading branch information
1 parent
92105aa
commit dd8d23a
Showing
6 changed files
with
376 additions
and
314 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,63 @@ | ||
import typescriptEslint from '@typescript-eslint/eslint-plugin'; | ||
import prettier from 'eslint-plugin-prettier'; | ||
import simpleImportSort from 'eslint-plugin-simple-import-sort'; | ||
import tsdoc from 'eslint-plugin-tsdoc'; | ||
import globals from 'globals'; | ||
import tsParser from '@typescript-eslint/parser'; | ||
import path from 'node:path'; | ||
import { fileURLToPath } from 'node:url'; | ||
import js from '@eslint/js'; | ||
import { FlatCompat } from '@eslint/eslintrc'; | ||
import { includeIgnoreFile } from '@eslint/compat'; | ||
|
||
const __filename = fileURLToPath(import.meta.url); | ||
const __dirname = path.dirname(__filename); | ||
const gitignorePath = path.resolve(__dirname, '.gitignore'); | ||
|
||
const compat = new FlatCompat({ | ||
baseDirectory: __dirname, | ||
recommendedConfig: js.configs.recommended, | ||
allConfig: js.configs.all, | ||
}); | ||
|
||
export default [ | ||
includeIgnoreFile(gitignorePath), | ||
{ | ||
ignores: ['dist/'], | ||
}, | ||
|
||
...compat.extends( | ||
'eslint:recommended', | ||
'plugin:@typescript-eslint/recommended', | ||
), | ||
|
||
{ | ||
files: ['**/*.js', '**/*.ts'], | ||
|
||
plugins: { | ||
'@typescript-eslint': typescriptEslint, | ||
prettier, | ||
'simple-import-sort': simpleImportSort, | ||
tsdoc, | ||
}, | ||
|
||
languageOptions: { | ||
globals: { | ||
...globals.node, | ||
...globals.jest, | ||
}, | ||
parser: tsParser, | ||
}, | ||
|
||
rules: { | ||
'@typescript-eslint/no-extra-semi': 'off', | ||
'@typescript-eslint/no-unused-vars': 'error', | ||
'no-console': 'error', | ||
'no-debugger': 'error', | ||
'prettier/prettier': 'error', | ||
'simple-import-sort/exports': 'error', | ||
'simple-import-sort/imports': 'error', | ||
'tsdoc/syntax': 'error', | ||
}, | ||
}, | ||
]; |
Oops, something went wrong.