-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update dependency eslint to v9 (#211)
* Update dependency eslint to v9 * use new config format * add back kubo --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Jonathan Gray <[email protected]>
- Loading branch information
1 parent
ec41a93
commit 8c6193d
Showing
7 changed files
with
1,611 additions
and
6,873 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
import prettier from 'eslint-plugin-prettier' | ||
import globals from 'globals' | ||
import babelParser from '@babel/eslint-parser' | ||
import path from 'node:path' | ||
import { fileURLToPath } from 'node:url' | ||
import js from '@eslint/js' | ||
import { FlatCompat } from '@eslint/eslintrc' | ||
|
||
const __filename = fileURLToPath(import.meta.url) | ||
const __dirname = path.dirname(__filename) | ||
const compat = new FlatCompat({ | ||
baseDirectory: __dirname, | ||
recommendedConfig: js.configs.recommended, | ||
allConfig: js.configs.all, | ||
}) | ||
|
||
export default [ | ||
{ | ||
ignores: ['**/node_modules', '**/package.json', '**/coverage'], | ||
}, | ||
...compat.extends('eslint:recommended', 'prettier'), | ||
{ | ||
plugins: { | ||
prettier, | ||
}, | ||
|
||
languageOptions: { | ||
globals: { | ||
...globals.node, | ||
}, | ||
|
||
parser: babelParser, | ||
ecmaVersion: 12, | ||
sourceType: 'module', | ||
|
||
parserOptions: { | ||
requireConfigFile: false, | ||
}, | ||
}, | ||
|
||
rules: { | ||
'prettier/prettier': 'error', | ||
'no-console': 2, | ||
}, | ||
}, | ||
{ | ||
files: ['**/test/**/*.test.js'], | ||
|
||
languageOptions: { | ||
globals: { | ||
...globals.mocha, | ||
}, | ||
}, | ||
|
||
rules: { | ||
'prettier/prettier': 'error', | ||
}, | ||
}, | ||
] |
Oops, something went wrong.