mirror of
https://github.com/pionxzh/chatgpt-exporter.git
synced 2026-07-23 09:00:51 -05:00
19 lines
389 B
JavaScript
19 lines
389 B
JavaScript
import pionxzh from '@pionxzh/eslint-config'
|
|
|
|
export default pionxzh(
|
|
{
|
|
typescript: true,
|
|
react: true,
|
|
vue: false,
|
|
yaml: false,
|
|
ignores: ['*.md', '.release-please-manifest.json'],
|
|
},
|
|
{
|
|
rules: {
|
|
'no-alert': 'off',
|
|
'ts/ban-types': 'off',
|
|
'node/prefer-global/process': 'off',
|
|
},
|
|
},
|
|
)
|