Skip to content

Instantly share code, notes, and snippets.

View rohjs's full-sized avatar
🕳️
2025

Woohyeon (Umi) rohjs

🕳️
2025
View GitHub Profile
@rohjs
rohjs / vscode-settings.json
Last active June 17, 2022 10:51
VSCode Settings
{
"workbench.colorTheme": "Framer Syntax 2",
"workbench.iconTheme": "material-icon-theme",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"prettier.requireConfig": true,
"window.zoomLevel": 1,
"editor.suggestSelection": "first",
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.fontLigatures": true,
@rohjs
rohjs / vscode-keybindings.json
Last active January 17, 2021 10:41
VSCode Key Bindings Shortcut File
[
{
"key": "alt+space",
"command": "workbench.action.terminal.toggleTerminal"
},
{
"key": "cmd+n",
"command": "workbench.action.terminal.new",
"when": "terminalFocus"
},
@rohjs
rohjs / .scss-lint.yml
Last active April 6, 2022 21:18
SCSS lint configuration
scss_files: '**/*.scss'
severity: warning
linters:
BorderZero:
enabled: true
convention: zero
ColorKeyword:
@rohjs
rohjs / template.html
Last active July 24, 2023 15:26
A basic HTML boilerplates to test CSS reset
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>
전기히터 &gt; 캠핑/가정용 400W 미니멀 전기히터 VO-HT015 (안전장치기능탑재)
| 내일의 집
</title>
files:
include: '**/*.scss'
options:
formatter: stylish
merge-default-rules: false
rules:
border-zero:
- 1
- convention: zero
brace-style:
{
"extends": ["stylelint-config-recess-order", "stylelint-config-standard"],
"plugins": "stylelint-scss",
"rules": {
"alpha-value-notation": "number",
"at-rule-empty-line-before": null,
"at-rule-name-case": "lower",
"at-rule-no-unknown": null,
"at-rule-semicolon-newline-after": [
"always",
@rohjs
rohjs / .eslintrc
Last active October 15, 2024 15:28
An ESLint config to override to the latest well-supported version of JavaScript (ESLint defaults to ES5 syntax-checking)
{
"parserOptions": {
"ecmaVersion": 2017
},
"env": {
"es6": true
}
}
@rohjs
rohjs / timezons.json
Last active August 2, 2021 09:50
🌎 Timezones
[
{
"offset": "GMT-12:00",
"name": "Etc/GMT-12"
},
{
"offset": "GMT-11:00",
"name": "Etc/GMT-11"
},
{
@rohjs
rohjs / build.js
Last active March 18, 2023 12:15
Tomorrow House / Build Script
const path = require('path')
const fs = require('fs')
const { copySync } = require('fs-extra')
const postcss = require('postcss')
const cssnano = require('cssnano')
const autoprefixer = require('autoprefixer')
const imageminJpegtran = require('imagemin-jpegtran')
const REPOSITORY_NAME = 'tomorrow-house'
@rohjs
rohjs / deploy.js
Last active March 18, 2023 12:17
Tomorrow House / Deploy Script
const path = require('path')
const fs = require('fs')
const ghpages = require('gh-pages')
const buildDir = path.resolve(__dirname, '../build')
console.log('------------------------')
console.log('Start deploying...')
ghpages.publish(buildDir, function (err) {