.eslintrc.json (378B)
1 { 2 "parserOptions": { 3 "ecmaVersion": "2022", 4 // Needed because eslint doesn't pick up the subdirectory package.json. 5 "sourceType": "module" 6 }, 7 "rules": { 8 "no-process-exit": "off", 9 // Rules needed because eslint doesn't pick up the subdirectory package.json. 10 "node/no-unsupported-features/es-syntax": "off", 11 "node/no-missing-import": "off" 12 } 13 }