2022-01-17 11:19:11 +08:00
|
|
|
/* eslint-disable @typescript-eslint/no-var-requires */
|
|
|
|
const { defineConfig } = require('eslint-define-config')
|
|
|
|
|
|
|
|
module.exports = defineConfig({
|
2021-09-15 01:13:36 +08:00
|
|
|
rules: {
|
|
|
|
'no-console': 'off',
|
|
|
|
},
|
2022-01-17 11:19:11 +08:00
|
|
|
})
|