mirror of
https://github.com/pionxzh/chatgpt-exporter.git
synced 2026-07-23 09:00:51 -05:00
12 lines
249 B
JavaScript
12 lines
249 B
JavaScript
module.exports = {
|
|
root: true,
|
|
extends: [
|
|
'@pionxzh/eslint-config-ts',
|
|
],
|
|
rules: {
|
|
'no-console': 'off',
|
|
'@typescript-eslint/ban-ts-comment': 'off',
|
|
'@typescript-eslint/no-unused-vars': 'off',
|
|
},
|
|
}
|