Skip to content

Instantly share code, notes, and snippets.

View joellongie's full-sized avatar
🎯
Focusing

Joel Longie joellongie

🎯
Focusing
View GitHub Profile
@joellongie
joellongie / style-guide.html
Created May 19, 2016 00:24
basic html5 style-guide
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<link rel="stylesheet" href="css/style.css">
<style>
.stylesheet-container{
width: 90%;
margin: 20px auto;
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.html$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.html [L]
</IfModule>
@joellongie
joellongie / .eslintrc
Created March 30, 2016 04:58
eslintrc
{
"env": {
"browser": true,
"node": true,
"es6": true
},
"ecmaFeatures": {
"modules": true,
"jsx": true
},