mirror of
https://github.com/mara-li/obsidian-simple-colored-folder.git
synced 2026-07-22 05:46:20 +00:00
chore: add sleep in the globals
This commit is contained in:
parent
a08a811765
commit
84f161c258
1 changed files with 22 additions and 5 deletions
27
biome.json
27
biome.json
|
|
@ -1,6 +1,12 @@
|
|||
{
|
||||
"$schema": "./node_modules/@biomejs/biome/configuration_schema.json",
|
||||
"assist": { "actions": { "source": { "organizeImports": "on" } } },
|
||||
"assist": {
|
||||
"actions": {
|
||||
"source": {
|
||||
"organizeImports": "on"
|
||||
}
|
||||
}
|
||||
},
|
||||
"linter": {
|
||||
"enabled": true,
|
||||
"rules": {
|
||||
|
|
@ -84,13 +90,21 @@
|
|||
},
|
||||
"overrides": [
|
||||
{
|
||||
"includes": ["**/*.ts", "**/*.tsx", "!**/*.js"]
|
||||
"includes": [
|
||||
"**/*.ts",
|
||||
"**/*.tsx",
|
||||
"!**/*.js"
|
||||
]
|
||||
},
|
||||
{
|
||||
"includes": ["**/*.js"]
|
||||
"includes": [
|
||||
"**/*.js"
|
||||
]
|
||||
},
|
||||
{
|
||||
"includes": ["**/*.json"]
|
||||
"includes": [
|
||||
"**/*.json"
|
||||
]
|
||||
}
|
||||
],
|
||||
"formatter": {
|
||||
|
|
@ -100,6 +114,9 @@
|
|||
"lineWidth": 90
|
||||
},
|
||||
"javascript": {
|
||||
"globals": [
|
||||
"sleep"
|
||||
],
|
||||
"formatter": {
|
||||
"quoteStyle": "double",
|
||||
"semicolons": "always",
|
||||
|
|
@ -111,4 +128,4 @@
|
|||
"trailingCommas": "none"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Reference in a new issue