mirror of
https://github.com/pionxzh/chatgpt-exporter.git
synced 2026-07-23 09:00:51 -05:00
* Created Read_KR.md Reuploaded Korean Readme * docs: rename to `README_KR.md` --------- Co-authored-by: Pionxzh <spigbbbbb@gmail.com>
35 lines
806 B
JavaScript
35 lines
806 B
JavaScript
module.exports = {
|
|
root: true,
|
|
extends: [
|
|
'@pionxzh/eslint-config-react',
|
|
],
|
|
rules: {
|
|
'no-console': 'off',
|
|
'no-alert': 'off',
|
|
'react/prop-types': 'off',
|
|
'react/no-unknown-property': ['error', {
|
|
ignore: [
|
|
'stroke-width',
|
|
'stroke-linecap',
|
|
'stroke-linejoin',
|
|
],
|
|
}],
|
|
'@typescript-eslint/ban-ts-comment': 'off',
|
|
'@typescript-eslint/no-unused-vars': 'off',
|
|
},
|
|
overrides: [
|
|
{
|
|
files: ['template.html'],
|
|
rules: {
|
|
'no-undef': 'off',
|
|
},
|
|
},
|
|
{
|
|
files: ['**/*.md/*.*'],
|
|
rules: {
|
|
'jsonc/indent': ['error', 4],
|
|
},
|
|
},
|
|
],
|
|
}
|