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