abell
abell copied to clipboard
VSCode Prettier Support
VSCode Prettier Support
It would be great if there was an easy way to formate .abell files on save with .prettierrc
Describe the solution you'd like
VSCode settings.json
"[javascriptabell]": {
"editor.formatOnSave": true
}
.prettierrc
{
"semi": false,
"singleQuote": true,
"trailingComma": "all",
"tabWidth": 2,
"useTabs": false,
"bracketSpacing": true
}
oh yes this is definitely something we need. Before that we'll have to create a prettier-abell-plugin to make prettier understand how to format abell files. After that we can add prettierrc to our create-abell
templates