Skip to content

Instantly share code, notes, and snippets.

View lighthouse-dev's full-sized avatar
๐Ÿบ

lighthouse lighthouse-dev

๐Ÿบ
View GitHub Profile
{
"extends": "airbnb",
"plugins": ["react", "jsx-a11y", "import"],
"rules": {
"react/prefer-stateless-function": 0,
"react/jsx-filename-extension": 0
}
"parser": "babel-eslint"
}
@lighthouse-dev
lighthouse-dev / style.less
Last active May 24, 2025 19:44
markdown-preview-enhanced customize-css
/* Please visit the URL below for more information: */
/* https://shd101wyy.github.io/markdown-preview-enhanced/#/customize-css */
.markdown-preview.markdown-preview {
// modify your style here
// eg: background-color: blue;
h1,
h2 {
border-bottom: 1px solid #eaecef;
}
// Place your key bindings in this file to override the defaultsauto[]
[
{
"key": "ctrl+d",
"command": "-workbench.action.debug.run",
"when": "!inDebugMode && !terminalFocus"
}
]
html {
font-family: 'OpenSans', helvetica, arial, sans-serif;
}
h1 {
/* color: #2aab9f; */
color: #3E48B3;
font-weight: bolder;
border-radius: 10px;
/* font-size: 15px; */
{
"protocol": "sftp",
"port": 22,
"name": "",
"host": "",
"remotePath": "",
"agent": "$SSH_AUTH_SOCK",
"algorithms": {
"serverHostKey": [
"ssh-rsa",
@lighthouse-dev
lighthouse-dev / settings.json
Last active December 14, 2019 00:13
vs-code settings.json
{
// "workbench.iconTheme": "material-icon-theme",
"window.zoomLevel": 0,
// "materialTheme.fixIconsRunning": false,
// "[javascript]": {
// "editor.tabSize": 2
// },
// "[html]": {
// "editor.tabSize": 2
@lighthouse-dev
lighthouse-dev / .gitmessage.txt
Last active December 3, 2019 08:12
~/.gitmessage.txt
# ๐Ÿ†•:new: ์ƒˆ๋กœ์šดํŒŒ์ผ ์ƒ์„ฑ
# ๐Ÿ”ฅ:fire: ํŒŒ์ผ ์‚ญ์ œ
# ๐Ÿ“:pencil: ๋ฌธ์„œ ์ž‘์„ฑ/์ˆ˜์ •
# ๐Ÿ‘:+1: ๊ธฐ๋Šฅ ๊ฐœ์„ 
# โž•:heavy_plus_sign: ๊ธฐ๋Šฅ ์ถ”๊ฐ€
# โž–:heavy_minus_sign: ๊ธฐ๋Šฅ ์ œ๊ฑฐ
# ๐Ÿšฟ:shower: ๋ถˆํ•„์š”ํ•œ ๋ถ€๋ถ„ ์ œ๊ฑฐ/์ฒญ์†Œ
# โœจ:sparkles: ๋””์ž์ธ, ์™ธ๊ด€์ ์ธ ๋ถ€๋ถ„ ์ˆ˜์ •
# ๐Ÿ˜‡:innocent: ์ปค๋ฐ‹ ์‹ค์ˆ˜
# ๐Ÿ’ก:bulb: ์ƒˆ๋กœ์šด ์•„์ด๋””์–ด
@lighthouse-dev
lighthouse-dev / .prettierignore
Created December 2, 2018 06:33
.prettierignore
dist/
coverage/
node_modules/
@lighthouse-dev
lighthouse-dev / tslint.json
Last active December 5, 2018 02:01
tslint.json
{
"rulesDirectory": ["node_modules/codelyzer"],
"rules": {
"arrow-return-shorthand": true,
"callable-types": true,
"class-name": true,
"comment-format": [true, "check-space"],
"curly": true,
"cyclomatic-complexity": [true, 4],
"deprecation": {