Files
afilmory/.vscode/settings.json
Innei b14dd85b28 feat: enhance RSS EXIF specification and update related components
- Updated the RSS EXIF specification to version 1.1, adding protocol metadata and expanding EXIF field definitions, including location and technical parameters.
- Modified the feed-sitemap generation to include new EXIF fields and improved date handling.
- Adjusted the SlidingNumber component to use a predefined spring transition for smoother animations.
- Updated VSCode settings to exclude specific directories from search.

Signed-off-by: Innei <tukon479@gmail.com>
2025-06-13 22:13:34 +08:00

46 lines
1.1 KiB
JSON

{
"editor.formatOnSave": true,
"[javascript][javascriptreact][typescript][typescriptreact][json][jsonc]": {
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit"
}
},
"search.exclude": {
"**/node_modules": true,
".specstory": true
},
// If you do not want to autofix some rules on save
// You can put this in your user settings or workspace settings
"eslint.codeActionsOnSave.rules": [
"!unused-imports/no-unused-imports",
"*"
],
// If you want to silent stylistic rules
// You can put this in your user settings or workspace settings
"eslint.rules.customizations": [
{
"rule": "@stylistic/*",
"severity": "off",
"fixable": true
},
{
"rule": "antfu/consistent-list-newline",
"severity": "off"
},
{
"rule": "hyoban/jsx-attribute-spacing",
"severity": "off"
},
{
"rule": "simple-import-sort/*",
"severity": "off"
},
{
"rule": "unused-imports/no-unused-imports",
"severity": "off"
}
],
"cSpell.words": [
"Afilmory"
]
}