Skip to content

Instantly share code, notes, and snippets.

View xgqfrms-GitHub's full-sized avatar
🌴
On vacation

anonymous xgqfrms-GitHub

🌴
On vacation
View GitHub Profile
@xgqfrms-GitHub
xgqfrms-GitHub / eslint-1-warnings-2-errors.md
Created August 27, 2017 15:35 — forked from xyzdata/eslint-1-warnings-2-errors.md
`1` for `warnings` and `2` for `errors` & "rules": { "semi": [2, "always"] }
@xgqfrms-GitHub
xgqfrms-GitHub / input-number-spin-style.md
Created July 5, 2017 07:28 — forked from xyzdata/input-number-spin-style.md
input=number & spin style (arrows)

input=number & spin style (arrows)

how to hidden [input=number] browser default spin style

css input type number remove arrows

@xgqfrms-GitHub
xgqfrms-GitHub / vs-code-user-setting.md
Created June 20, 2017 12:54 — forked from xyzdata/vs-code-user-setting.md
VS code setting.json & React JS
@xgqfrms-GitHub
xgqfrms-GitHub / js-comma-in-deepth.md
Last active June 15, 2017 16:59 — forked from isaacs/comma-first-var.js
js-comma-in-deepth: A better coding convention for lists and object literals in JavaScript

js-comma-in-deepth

    
// standard style
var a = "ape",
    b = "bat",
    c = "cat",
    d = "dog",
    e = "elf",
showState();
// output: Ready
console.log("function declaration");
function showState() {
console.log("Ready");
}
console.log("function expression");