mirror of
https://github.com/hugo-fixit/FixIt.git
synced 2026-08-24 15:28:57 +00:00
100 lines
2.3 KiB
JSON
100 lines
2.3 KiB
JSON
{
|
|
"todo-tree.tree.scanMode": "workspace only",
|
|
"explorer.fileNesting.enabled": true,
|
|
"explorer.fileNesting.patterns": {
|
|
"tsconfig.json": "tsconfig.*.json, env.d.ts",
|
|
"package.json": "package-lock.json, pnpm*, .npmrc, .nvmrc, .eslint*, eslint*, .editorconfig, librarybot.yml",
|
|
"README.md": "README.*.md, CODE_OF_CONDUCT.md, CONTRIBUTING.md, LICENSE, SECURITY.md, CHANGELOG.md",
|
|
"hugo.toml": "theme.toml, .hugo_build.lock",
|
|
"vercel.json": "build.sh"
|
|
},
|
|
"files.associations": {
|
|
"*.template.scss": "gocss",
|
|
"*.template.svg": "html",
|
|
"**/plugin/script.html": "gohtml",
|
|
"**/layouts/**/*.json": "gojson",
|
|
"**/layouts/**/*.xml": "gohtml",
|
|
"**/layouts/**/*.md": "gotemplate"
|
|
},
|
|
// Disable the default formatter, use eslint instead
|
|
"prettier.enable": false,
|
|
"editor.formatOnSave": false,
|
|
// Auto fix
|
|
"editor.codeActionsOnSave": {
|
|
"source.fixAll.eslint": "explicit",
|
|
"source.organizeImports": "never"
|
|
},
|
|
// Silent the stylistic rules in you IDE, but still auto fix them
|
|
"eslint.rules.customizations": [
|
|
{
|
|
"rule": "style/*",
|
|
"severity": "off",
|
|
"fixable": true
|
|
},
|
|
{
|
|
"rule": "format/*",
|
|
"severity": "off",
|
|
"fixable": true
|
|
},
|
|
{
|
|
"rule": "*-indent",
|
|
"severity": "off",
|
|
"fixable": true
|
|
},
|
|
{
|
|
"rule": "*-spacing",
|
|
"severity": "off",
|
|
"fixable": true
|
|
},
|
|
{
|
|
"rule": "*-spaces",
|
|
"severity": "off",
|
|
"fixable": true
|
|
},
|
|
{
|
|
"rule": "*-order",
|
|
"severity": "off",
|
|
"fixable": true
|
|
},
|
|
{
|
|
"rule": "*-dangle",
|
|
"severity": "off",
|
|
"fixable": true
|
|
},
|
|
{
|
|
"rule": "*-newline",
|
|
"severity": "off",
|
|
"fixable": true
|
|
},
|
|
{
|
|
"rule": "*quotes",
|
|
"severity": "off",
|
|
"fixable": true
|
|
},
|
|
{
|
|
"rule": "*semi",
|
|
"severity": "off",
|
|
"fixable": true
|
|
}
|
|
],
|
|
// SCSS path resolution (Some Sass extension)
|
|
"somesass.workspace.loadPaths": ["assets/scss"],
|
|
"somesass.scss.links.enabled": true,
|
|
// Enable eslint for all supported languages
|
|
"eslint.validate": [
|
|
"go-html-template",
|
|
"javascript",
|
|
"typescript",
|
|
"html",
|
|
"markdown",
|
|
"json",
|
|
"json5",
|
|
"jsonc",
|
|
"yaml",
|
|
"toml",
|
|
"xml",
|
|
"css",
|
|
"scss"
|
|
]
|
|
}
|