Skip to content

Instantly share code, notes, and snippets.

View devjin0617's full-sized avatar
💻
저는 개발을 합니다

cheongjin kim (김청진) devjin0617

💻
저는 개발을 합니다
View GitHub Profile

InterlliJ Plugins

File - settings - plugins 에서 아래 플러그인들을 검색할 수 있습니다.

  • Vue.js: vue-cli를 기본적으로 사용할 수 있도록 해줍니다. (그러나 쓸 일이 그닥..)
  • Presentation Assistant: 타OS의 단축키를 안내해줍니다.
  • .gitignore: 각 파일들을 .gitignore 에 추가할 수 있도록 메뉴에서 제공해줍니다.
  • BashSupport: 이걸 추가하면 bash를 좀 더 잘 사용할 수 있을지도 모릅니다.
  • jojoldu Translator: 한글을 영어로, 영어를 한글로 번역해주는 아주 착한 친구입니다.
  • CodeGlance: 우측에서 소스코드 미니맵을 볼 수 있습니다.
@devjin0617
devjin0617 / settings.json
Created September 4, 2019 03:21
vscode vue lint & autofix setting file
{
"eslint.autoFixOnSave": true,
"editor.formatOnSave": true,
"files.associations": {
"*.vue": "vue"
},
"eslint.validate": [
{
"language": "javascript",
"autoFix": true
@devjin0617
devjin0617 / .manifest
Created May 19, 2017 15:15
chrome extension using a content script to access the `window` object
{
"content_scripts": [
{
"matches": ["http://*/*", "https://*/*"],
"js": ["inject.js"],
"all_frames": true
}
],
"web_accessible_resources": [
"content.js"
@devjin0617
devjin0617 / git.sh
Last active April 5, 2017 04:56
git정리
# git remote 에 삭제된 브런치들 갱신하는 명령어(둘 중 하나만 사용하면 됨)
$ git remote prune origin
$ git remote update --prune
<template>
...
<button type="button" class="btn btn-primary" autocomplate="off" data-loading-text="jquery with bootstrap" @click="clickBtn">
...
</template>
<script>
export default {
name: 'jQueryApp',
methods: {
import 'expose-loader?$!expose-loader?jQuery!jquery'
// 위에서 추가했던 jQuery 밑에 코드를 작성하세요
import 'bootstrap'
import 'bootstrap/dist/css/bootstrap.min.css'
npm i --save bootstrap
import 'expose-loader?$!expose-loader?jQuery!jquery'