mirror of
https://github.com/pionxzh/chatgpt-exporter.git
synced 2026-07-23 09:00:51 -05:00
37 lines
705 B
JSON
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
|
|
}
|