38 lines
892 B
JSON
38 lines
892 B
JSON
{
|
|
"editor.codeActionsOnSave": {
|
|
"source.fixAll": true,
|
|
"source.fixAll.eslint": true,
|
|
"source.organizeImports": true
|
|
},
|
|
"editor.formatOnSave": true,
|
|
"editor.rulers": [
|
|
140
|
|
],
|
|
"eslint.options": {
|
|
"extensions": [
|
|
".ts",
|
|
".html"
|
|
]
|
|
},
|
|
"eslint.packageManager": "yarn",
|
|
"eslint.validate": [
|
|
"javascript",
|
|
"javascriptreact",
|
|
"typescript",
|
|
"typescriptreact",
|
|
"html"
|
|
],
|
|
"files.associations": {
|
|
".ipfs-npmrc": "json"
|
|
},
|
|
"html.format.indentHandlebars": true,
|
|
"html.format.maxPreserveNewLines": 1,
|
|
"html.format.wrapAttributes": "auto",
|
|
"html.format.wrapLineLength": 140,
|
|
"npm.packageManager": "yarn",
|
|
"tslint.packageManager": "yarn",
|
|
"typescript.preferences.importModuleSpecifier": "relative",
|
|
"typescript.tsdk": "node_modules\\typescript\\lib",
|
|
"typescript.updateImportsOnFileMove.enabled": "always"
|
|
}
|