일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 리버싱
- Baekjoon
- cloud run
- gcp cloud build
- gcp
- node.js
- 백준
- 보안
- webhacking.kr
- docker
- 포너블
- 사이버보안
- spring Batch
- 프로그래머스
- programmers
- sequelize
- 스프링 배치
- 웹해킹
- 네트워크
- 시스템 해킹
- Python
- hackctf
- 회고
- Batch
- pwnable.xyz
- gcp ci/cd
- 웹보안
- kotest
- 파이썬
- nodejs
Archives
목록eslint airbnb (1)
uju's Tech
ESLint 설치 및 Airbnb 적용
1. ESLint global로 설치 sudo npm install -g eslint 2. sudo npm install --save-dev eslint 3. ./node_modules/.bin/eslint --init 4. 3을 실행하면 질문이 나오면서 선택을 해야한다. 필자는 아래 그림과 같이 설정하 였다. 5. 적용된 모습은 아래와 같다. 6. arbinb 적용 module.exports = { env: { browser: true, es2020: true, }, extends: 'airbnb-base', parserOptions: { ecmaVersion: 11, sourceType: 'module', }, rules: { }, };
Node
2020. 6. 13. 03:54