Adds prettier commit hook for svelte files
#3745Svelte files are not automatically prettified on commit, leading to inconsistent prettifying that depends on VS Code local styling plugins.
Install prettier-plugin-svelte on core/package.json and using the prettier CLI command should be enough to prettify automatically:
prettier --write --plugin-search-dir=. ./**/*.svelte
// limit to core/src initially
Description
Changes proposed in this pull request:
Related issue(s)
Resolves #2946