Skip to content

Commit

Permalink
use new config format
Browse files Browse the repository at this point in the history
  • Loading branch information
jonmattgray committed Oct 1, 2024
1 parent 83f241d commit ae6ea56
Show file tree
Hide file tree
Showing 7 changed files with 1,220 additions and 7,327 deletions.
3 changes: 0 additions & 3 deletions .eslintignore

This file was deleted.

27 changes: 0 additions & 27 deletions .eslintrc

This file was deleted.

59 changes: 59 additions & 0 deletions eslint.config.mjs
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',
},
},
]
Loading

0 comments on commit ae6ea56

Please sign in to comment.