Skip to content
This repository has been archived by the owner on Oct 9, 2024. It is now read-only.

Commit

Permalink
Update dependency eslint to v9 (#187)
Browse files Browse the repository at this point in the history
* Update dependency eslint to v9

* use new config format

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Jonathan Gray <[email protected]>
  • Loading branch information
renovate[bot] and jonmattgray authored Oct 1, 2024
1 parent cdd5058 commit cd9d976
Show file tree
Hide file tree
Showing 5 changed files with 298 additions and 282 deletions.
3 changes: 0 additions & 3 deletions .eslintignore

This file was deleted.

30 changes: 0 additions & 30 deletions .eslintrc

This file was deleted.

66 changes: 66 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
import prettier from 'eslint-plugin-prettier'
import typescriptEslint from '@typescript-eslint/eslint-plugin'
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'

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', '**/build'],
},
...compat.extends('eslint:recommended', 'plugin:@typescript-eslint/recommended', 'prettier'),
{
plugins: {
prettier,
'@typescript-eslint': typescriptEslint,
},

languageOptions: {
globals: {
...globals.node,
},

parser: tsParser,
ecmaVersion: 12,
sourceType: 'module',
},

rules: {
'prettier/prettier': 'error',

'@typescript-eslint/no-unused-vars': [
'warn',
{
ignoreRestSiblings: true,
},
],

'no-console': 2,
},
},
{
files: ['**/*.test.ts', 'test/**/*.ts'],

languageOptions: {
globals: {
...globals.mocha,
},
},

rules: {
'prettier/prettier': 'error',
'@typescript-eslint/no-explicit-any': 'off',
},
},
]
Loading

0 comments on commit cd9d976

Please sign in to comment.