Files
memecoin-botV2/.pnpm-store/v10/files/ba/e1dbd96ae07e2f13ef8085bf209dd4ec4d7cd4bfc044b47a42c14883a9a81d73207b2f560373252dd36e555bd37a720e3cd86acf6ba64fb84c90a67b5b395c

29 lines
563 B
Plaintext

'use strict'
const { defineConfig, globalIgnores } = require('eslint/config')
const neostandard = require('neostandard')
module.exports = defineConfig([
neostandard({
ts: true
}),
globalIgnores([
'pino.d.ts',
'test/fixtures/syntax-error-esm.mjs',
'test/fixtures/ts/*cjs',
]),
{
rules: {
'no-var': 'off',
},
},
{
files: ['test/types/**/*'],
rules: {
'@typescript-eslint/no-unused-expressions': 'off',
'@typescript-eslint/no-unused-vars': 'off',
'n/handle-callback-err': 'off',
},
},
])