mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-04 04:08:34 +08:00
5b5e9ab81d
Co-authored-by: Renovate Bot <bot@renovateapp.com> Co-authored-by: Kevin <sxzz@sxzz.moe>
10 lines
211 B
JavaScript
10 lines
211 B
JavaScript
const { defineConfig } = require('eslint-define-config')
|
|
|
|
module.exports = defineConfig({
|
|
rules: {
|
|
'no-console': 'off',
|
|
'no-unused-vars': 'off',
|
|
'@typescript-eslint/no-unused-vars': 'off',
|
|
},
|
|
})
|