Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/raphaelkieling/vue-template-webpack


https://github.com/raphaelkieling/vue-template-webpack

Last synced: 3 days ago
JSON representation

Awesome Lists containing this project

README

        

# Vue 2 Template Webpack

- Autofix with prettier
- Jest tests
- Typescript
- Vue composable api

## Lint

If you use Vscode, put that on `settings.json`

```json
{
"eslint.autoFixOnSave": true,
"eslint.validate": [
"javascript",
{
"language": "typescript",
"autoFix": true
}
],
"[typescript]": {
"editor.formatOnSave": true
},
"[vue]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode"
}
}
```