0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2024-12-16 20:26:19 -05:00
logto/.vscode/settings.json

29 lines
527 B
JSON
Raw Normal View History

2021-07-11 09:26:08 -05:00
{
"typescript.tsdk": "node_modules/typescript/lib",
"[scss]": {
"editor.codeActionsOnSave": {
"source.fixAll.stylelint": true
}
},
2022-03-12 09:19:53 -05:00
"stylelint.validate": ["css", "scss"],
2021-07-25 08:58:27 -05:00
"eslint.workingDirectories": [
{
2021-07-26 10:56:38 -05:00
"pattern": "./packages/*"
2021-07-25 08:58:27 -05:00
}
],
"eslint.validate": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact",
],
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
2022-05-02 11:34:31 -05:00
},
"cSpell.words": [
"Alipay",
"Logto",
"Passwordless"
]
2021-07-11 09:26:08 -05:00
}