18 lines
570 B
JSON
18 lines
570 B
JSON
{
|
|
"editor.formatOnSave": true,
|
|
"editor.codeActionsOnSave": {
|
|
"source.organizeImports": true
|
|
},
|
|
"[jsonc]": {
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
|
},
|
|
// Extensions - Code Spell Checker
|
|
"cSpell.ignoreWords": ["endianness", "noflat", "nopix", "omexml"],
|
|
"cSpell.words": ["bioformats", "imageinfo", "neurodata", "riken"],
|
|
// Extentions - Prettier
|
|
"prettier.printWidth": 120,
|
|
"prettier.singleQuote": true,
|
|
"prettier.tabWidth": 4,
|
|
"java.configuration.updateBuildConfiguration": "interactive"
|
|
}
|