Files
chatgpt-exporter/.vscode/settings.json
2023-11-09 02:23:35 +08:00

37 lines
705 B
JSON

{
"eslint.experimental.useFlatConfig": true,
"editor.codeActionsOnSave": {
"source.fixAll": false,
"source.fixAll.eslint": true, // this allows ESLint to auto fix on save
"source.organizeImports": false
},
"editor.formatOnSave": false,
"eslint.validate": [
"javascript",
"typescript",
"javascriptreact",
"typescriptreact",
"vue",
"html",
"markdown",
"json",
"jsonc",
"json5",
"yaml"
],
"prettier.enable": false,
"cSpell.words": [
"backoff",
"chatgpt",
"datetime",
"davinci",
"headlessui",
"mdast",
"micromark",
"preact",
"tabler",
"unist"
],
"markdown.extension.toc.updateOnSave": false
}