mirror of
https://github.com/Afilmory/afilmory
synced 2026-02-01 14:44:48 +00:00
- Added functionality to manage storage providers, including adding, editing, and toggling active status. - Introduced utility functions for normalizing and serializing storage provider configurations. - Implemented masking of sensitive fields in storage provider settings. - Updated the dashboard UI components to reflect the new storage provider management features. - Added new constants and utility functions for better handling of storage provider data. Signed-off-by: Innei <tukon479@gmail.com>
75 lines
1.6 KiB
JSON
75 lines
1.6 KiB
JSON
{
|
|
"editor.formatOnSave": true,
|
|
"[javascript][javascriptreact][typescript][typescriptreact][json][jsonc]": {
|
|
"editor.codeActionsOnSave": {
|
|
"source.fixAll.eslint": "explicit"
|
|
}
|
|
},
|
|
"search.exclude": {
|
|
"**/node_modules": true,
|
|
".specstory": true
|
|
},
|
|
"tailwindCSS.experimental.classRegex": [
|
|
[
|
|
"cn\\(([^)]*)\\)",
|
|
"[\"'`]([^\"'`]*).*?[\"'`]"
|
|
],
|
|
[
|
|
"clsxm\\(([^)]*)\\)",
|
|
"[\"'`]([^\"'`]*).*?[\"'`]"
|
|
],
|
|
[
|
|
"tv\\(([^)]*)\\)",
|
|
"(?:'|\"|`)([^']*)(?:'|\"|`)"
|
|
],
|
|
[
|
|
"tw`([^`]*)`",
|
|
"([^`]*)"
|
|
],
|
|
[
|
|
"[a-zA-Z]+[cC]lass[nN]ame[\"'`]?:\\s*[\"'`]([^\"'`]*)[\"'`]",
|
|
"([^\"'`]*)"
|
|
],
|
|
[
|
|
"[a-zA-Z]+[cC]lass[nN]ame\\s*=\\s*[\"'`]([^\"'`]*)[\"'`]",
|
|
"([^\"'`]*)"
|
|
]
|
|
],
|
|
// 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"
|
|
],
|
|
"exportall.config.folderListener": [
|
|
"/apps/ssr/src/schemas"
|
|
]
|
|
} |