Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/txstate-etc/web-project-template
Template for web based projects at Texas State University
https://github.com/txstate-etc/web-project-template
Last synced: 22 days ago
JSON representation
Template for web based projects at Texas State University
- Host: GitHub
- URL: https://github.com/txstate-etc/web-project-template
- Owner: txstate-etc
- Created: 2019-09-04T14:22:28.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-01-31T16:07:40.000Z (almost 5 years ago)
- Last Synced: 2024-11-08T14:48:23.935Z (3 months ago)
- Language: TypeScript
- Homepage:
- Size: 1.03 MB
- Stars: 0
- Watchers: 13
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# web-project-template
Template for web based projects at Texas State University## Setting up linting (Required)
1. [Install the ESLint VSCode Extension](https://marketplace.visualstudio.com/items?itemName=dbaeumer.vscode-eslint)
2. Add the following to your VSCode [settings.json](https://code.visualstudio.com/docs/getstarted/settings) (*command + shift + p* or *ctrl + shift + p* on Windows to open **Preferences: Open Settings (JSON)**)
```json
"eslint.autoFixOnSave": true,
"eslint.enable": true,
"eslint.run": "onType",
"eslint.validate": [
{"language": "typescript", "autoFix": true},
{"language": "typescriptreact", "autoFix": true}
]
```
3. Open project.code-workspace with VSCode instead of the folder.