Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nicojs/javascript-eslint-prettier-start
A starter project for javacript with eslint, prettier an typescript linting
https://github.com/nicojs/javascript-eslint-prettier-start
Last synced: 29 days ago
JSON representation
A starter project for javacript with eslint, prettier an typescript linting
- Host: GitHub
- URL: https://github.com/nicojs/javascript-eslint-prettier-start
- Owner: nicojs
- Created: 2021-10-01T13:33:59.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2021-10-01T13:44:25.000Z (about 3 years ago)
- Last Synced: 2024-04-14T06:39:06.845Z (7 months ago)
- Language: JavaScript
- Size: 16.6 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ESLint Prettier Starter
A starter project to enforce code-quality and formatting rules in your JavaScript code.
🚀 TypeScript for linting
✅ ESLint to keep your code in check
✨ Prettier to make stuff prettiest
🤘 VS code integration so you don't have to worry about all of this none-sense---
## Prerequisites
1. Install LTS version of Nodejs: https://nodejs.org/
1. Install VSCode: https://code.visualstudio.com/## Open start project in VSCode
1. Install the recommended plugins if asked for.
1. In menubar check **File, Auto Save**
1. Install the dependencies:```bash
npm install
```## Inspired by
- https://blog.logrocket.com/automate-formatting-and-fixing-javascript-code-with-prettier-and-eslint/