Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/raphaelkieling/vue-template-webpack
https://github.com/raphaelkieling/vue-template-webpack
Last synced: 3 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/raphaelkieling/vue-template-webpack
- Owner: raphaelkieling
- License: mit
- Created: 2019-11-14T23:00:32.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2022-12-11T13:33:14.000Z (almost 2 years ago)
- Last Synced: 2023-03-03T10:52:25.557Z (over 1 year ago)
- Language: TypeScript
- Size: 1.1 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 23
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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"
}
}
```