hedgedoc/eslint.config.mjs
Philip Molares 03a7b0d3ef chore(eslint): remove deprecated eslint-env
These comments did not work anymore and were replaced by relevant
sections in eslint.config.mjs

Signed-off-by: Philip Molares <philip.molares@udo.edu>
2025-02-01 22:15:54 +01:00

28 lines
674 B
JavaScript

import globals from 'globals'
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: ['lib/ot', 'public/vendor', 'public/build']
}, ...compat.extends('standard'), {
languageOptions: {
globals: {
...globals.node,
...globals.mocha,
...globals.jquery,
...globals.browser
}
},
rules: {}
}]