Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yonathanguez/eslint-prettier-config
https://github.com/yonathanguez/eslint-prettier-config
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/yonathanguez/eslint-prettier-config
- Owner: YonathanGuez
- Created: 2020-04-13T12:04:36.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-12-12T11:26:16.000Z (about 2 years ago)
- Last Synced: 2023-02-28T04:38:36.304Z (almost 2 years ago)
- Language: JavaScript
- Size: 441 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ESLint-Prettier-Config
# install Yarn :
## Setting :
```
yarn```
## Setting VS code : Ctrl + Shift +X
add ESLint## check if the code working:
### 1) Past this code in code.js
```
function hello(name) {
var name = test ;
}var table =
["kiffe", " test "];
let number = 22;```
### 2) Run check if we have some erro
```
yarn lint```
### 3) Correction code:
```
yarn fix```