mirror of
https://github.com/scratchfoundation/eslint-config-scratch.git
synced 2025-06-03 08:54:21 -04:00
13 lines
317 B
JavaScript
13 lines
317 B
JavaScript
import { globalIgnores } from 'eslint/config'
|
|
import globals from 'globals'
|
|
import { eslintConfigScratch } from './lib/index.mjs'
|
|
|
|
export default eslintConfigScratch.config(
|
|
eslintConfigScratch.recommended,
|
|
{
|
|
languageOptions: {
|
|
globals: globals.node,
|
|
},
|
|
},
|
|
globalIgnores(['test/**/*.bad.*']),
|
|
)
|