eslint-config-scratch/lib/legacy/node.mjs

21 lines
362 B
JavaScript
Raw Normal View History

2025-03-27 15:35:26 -07:00
import globals from 'globals'
/** @type {import('eslint').Linter.Config[]} */
2025-03-27 15:35:26 -07:00
export default [
{
languageOptions: {
2025-03-27 15:35:26 -07:00
globals: {
...globals.node,
},
},
rules: {
2025-03-27 15:35:26 -07:00
'global-require': [2],
'handle-callback-err': [2],
'no-mixed-requires': [2],
'no-new-require': [2],
'no-path-concat': [2],
},
},
]