public-gateway-cacher/.vscode/settings.json

38 lines
892 B
JSON
Raw Normal View History

2019-04-10 19:45:13 +00:00
{
2019-11-29 02:20:50 +00:00
"editor.codeActionsOnSave": {
2021-03-20 18:26:45 +00:00
"source.fixAll": true,
2022-03-11 02:44:37 +00:00
"source.fixAll.eslint": true,
2021-03-20 18:26:45 +00:00
"source.organizeImports": true
2019-11-29 02:20:50 +00:00
},
"editor.formatOnSave": true,
"editor.rulers": [
140
],
2022-03-11 02:44:37 +00:00
"eslint.options": {
"extensions": [
".ts",
".html"
]
},
2022-03-11 03:20:29 +00:00
"eslint.packageManager": "pnpm",
2022-03-11 02:44:37 +00:00
"eslint.validate": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact",
"html"
],
2021-03-20 18:26:45 +00:00
"files.associations": {
".ipfs-npmrc": "json"
},
2019-11-29 02:20:50 +00:00
"html.format.indentHandlebars": true,
"html.format.maxPreserveNewLines": 1,
"html.format.wrapAttributes": "auto",
"html.format.wrapLineLength": 140,
2022-03-11 03:20:29 +00:00
"npm.packageManager": "pnpm",
"tslint.packageManager": "pnpm",
2019-11-29 02:20:50 +00:00
"typescript.preferences.importModuleSpecifier": "relative",
2021-03-19 22:26:02 +00:00
"typescript.tsdk": "node_modules\\typescript\\lib",
"typescript.updateImportsOnFileMove.enabled": "always"
2019-11-29 02:20:50 +00:00
}