This commit is contained in:
Elizabeth Cray 2024-10-04 19:05:21 -04:00
parent f01184a13e
commit 37b6a03204

View File

@ -3,6 +3,7 @@ import pluginJs from "@eslint/js";
import stylistic from '@stylistic/eslint-plugin'; import stylistic from '@stylistic/eslint-plugin';
export default [ export default [
pluginJs.configs.recommended,
{ {
languageOptions: { languageOptions: {
globals: globals.node globals: globals.node
@ -14,6 +15,5 @@ export default [
'@stylistic/indent': ['error', 2], '@stylistic/indent': ['error', 2],
'no-useless-escape' : 'off' 'no-useless-escape' : 'off'
} }
}, }
pluginJs.configs.recommended,
]; ];