pino
Version:
super fast, all natural json logger
20 lines (17 loc) • 374 B
JavaScript
const { defineConfig, globalIgnores } = require('eslint/config')
const neostandard = require('neostandard')
module.exports = defineConfig([
neostandard({}),
globalIgnores([
'pino.d.ts',
'test/types/pino.test-d.ts',
'test/fixtures/syntax-error-esm.mjs',
'test/fixtures/ts/*cjs',
]),
{
rules: {
'no-var': 'off',
},
},
])