분류 전체보기 315

[Vue, ESLint airbnb, Prettier] Vue 프로젝트에 eslint airbnb 확장 추가하기 + eslint-prettier 연동하기

1. Vue 프로젝트 ESLint 설정에 airbnb 확장 추가하기 npm v5 이상 npx install-peerdeps --dev eslint-config-airbnb https://www.npmjs.com/package/eslint-config-airbnb eslint-config-airbnb Airbnb's ESLint config, following our styleguide. Latest version: 19.0.4, last published: 2 months ago. Start using eslint-config-airbnb in your project by running `npm i eslint-config-airbnb`. There are 3988 other projects in the..

[Vue, eslint] vue-cli-service build 수행 시 Failed to load config "airbnb" to extend from. 에러 해결

에러 발생 환경 package.json "devDependencies": { "@vue/cli-plugin-babel": "^4.5.0", "@vue/cli-plugin-eslint": "^4.5.0", "@vue/cli-service": "^4.5.14", "babel-eslint": "^10.1.0", "eslint": "^6.7.2", "eslint-plugin-vue": "^6.2.2", "node-sass": "^6.0.1", "prettier": "^2.5.1", "sass-loader": "^10.2.0", "vue-template-compiler": "^2.6.14" }, .eslintrc { "extends": [ "airbnb", ... ], ... } vue.config.js modu..

[Vue] scss 파일에서 @ src alias 사용 시 정상 동작하지 않음, Syntax Error: ModuleNotFoundError: Module not found: Error: Can't resolve

- css파일도 마찬가지 1. jsconfig.json(또는 tsconfig.json)과 vue.config.js 확인 - 두 파일 모두 path가 잘 설정되어 있는지 확인 jsconfig.json ( 또는 tsconfig.json ) { "compilerOptions": { "module": "umd", "paths": { "@" : ["./src/*"], } }, "exclude": ["node_modules"], "removeComments": true } vue.config.js const path = require('path'); module.exports = { lintOnSave: false, configureWebpack: { resolve: { alias: { '@': path.join(..

하루 10분! 영어 회화 초급

[ At a Fast Food Restaurant ] I would like [to have / to order] a chicken burger set. 치킨 버거 세트를 원합니다. May I have ~ ? : 공손한 표현 I will have it to go. 가지고 갈게요. Where are the toilets? 화장실이 어디 있나요? [ At a Coffee Shop ] What do you recommend? 무엇을 추천 하나요? Where can I sit? 어디에 앉을 수 있을까요? I would like to pay in cash. 현금으로 계산하겠습니다. [ At the Movies ] Which genre do you like? 어떤 장르를 좋아하세요? = What kind of [m..

영어 2022.03.03

Windows10 부팅 시 운영체제 선택에서 운영체제 이름 변경 방법 (멀티부팅 OS 이름 변경)

※ 명령 프롬프트 관리자 권한으로 실행할 것 부팅OS 목록 조회 명령어 bcdedit /v 부팅OS 목록 별 명칭 변경 명령어 bcdedit /set 부팅로더목록중바꾸고싶은OS의identifier description 바꾸고싶은이름 https://bfre.tistory.com/m/entry/%EC%BB%B4%ED%93%A8%ED%84%B0-%EC%9C%88%EB%8F%84%EC%9A%B010-%EB%A9%80%ED%8B%B0%EB%B6%80%ED%8C%85-%EB%AA%85%EC%B9%AD%EB%B3%80%EA%B2%BD-%EC%9D%B4%EB%A6%84%EB%B3%80%EA%B2%BD [컴퓨터] 윈도우10 멀티부팅 명칭변경 이름변경 윈도우10에서 멀티부팅 명칭 변경(이름 변경)을 기록한다 윈도우10이 ..

기타 2021.10.31

HTTP Header 구조 및 요청/응답 헤더의 주요 항목 정리

HTTP 프로토콜의 요청과 응답은 헤더(header, 부가 정보)와 바디(body, 실제 데이터)로 구성 HTTP의 헤더와 바디는 개행문자인 '\r\n'으로 구분 헤더와 바디 사이에 한 개의 빈 줄(line)이 존재 HTTP 헤더는 요청과 응답에 공통으로 사용되는 공통 헤더 / 요청 헤더 / 응답 헤더로 구분 HTTP 공통 헤더 주요 항목 Data - HTTP 메시지를 생성한 일시- RFC 1123을 따름 ex) Date : Tue, 19 Nov 2019 04:13:24 GMT Connection - Keep-Alive를 설정 ex) Connection : keep-alive Cache-Control - Cache 속성을 설정 no-store : 캐시를 저장하지 않음 no-cache : 서버에 확인 후 ..

Web 2021.10.16

17142 java 연습

https://www.acmicpc.net/problem/17142 17142번: 연구소 3 인체에 치명적인 바이러스를 연구하던 연구소에 승원이가 침입했고, 바이러스를 유출하려고 한다. 바이러스는 활성 상태와 비활성 상태가 있다. 가장 처음에 모든 바이러스는 비활성 상태이고 www.acmicpc.net import java.util.*; import java.io.*; class 17142 { static class Virus { int x, y, time; Virus(int x, int y, int time) { this.x = x; this.y = y; this.time = time; } } static int N, M; static int[][] arr; static int[] dx = { -1, ..

Algorithm/Baekjoon 2021.08.12
반응형