mirror of
https://github.com/scratchfoundation/scratch-l10n.git
synced 2025-07-09 12:23:56 -04:00
13 lines
357 B
JavaScript
13 lines
357 B
JavaScript
import { eslintConfigScratch } from 'eslint-config-scratch'
|
|
import { globalIgnores } from 'eslint/config'
|
|
import globals from 'globals'
|
|
|
|
export default eslintConfigScratch.config(
|
|
eslintConfigScratch.recommended,
|
|
{
|
|
languageOptions: {
|
|
globals: globals.node,
|
|
},
|
|
},
|
|
globalIgnores(['locales/**/*', 'dist/**/*', 'src/locale-data/**/*']),
|
|
)
|