mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-09 13:51:57 -04:00

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>
28 lines
674 B
JavaScript
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: {}
|
|
}]
|