Skip to content

Instantly share code, notes, and snippets.

View nathanfoon's full-sized avatar
😻

Nathan Foon nathanfoon

😻
View GitHub Profile
@nathanfoon
nathanfoon / .sass-lint.yml
Last active October 25, 2017 18:50
.sass-lint.yml
# sass-lint config generated by make-sass-lint-config v0.1.2
#
# The following scss-lint Linters are not yet supported by sass-lint:
# ElsePlacement, PropertyCount, PseudoElement, SelectorDepth
# UnnecessaryParentReference, VendorPrefixes, Compass::*
#
# The following settings/values are unsupported by sass-lint:
# Linter Indentation, option "allow_non_nested_indentation"
# Linter Indentation, option "character"
# Linter PropertySortOrder, option "separate_groups"
@nathanfoon
nathanfoon / .eslintrc
Last active September 25, 2017 16:08
{
"extends": "airbnb",
"rules": {
"no-tabs": 0,
"indent": [
"error",
"tab"
],
"no-multi-spaces": [
"error", {
@nathanfoon
nathanfoon / .haml-lint.yml
Last active August 29, 2015 14:16
.haml-lint.yml
# Default application configuration that all configurations inherit from.
#
# This is an opinionated list of which hooks are valuable to run and what their
# out of the box settings should be.
# Whether to ignore frontmatter at the beginning of HAML documents for
# frameworks such as Jekyll/Middleman
skip_frontmatter: false
linters:
@nathanfoon
nathanfoon / .rubocop.yml
Last active August 29, 2015 14:16
.rubocop.yml
# From https://github.com/bbatsov/rubocop/blob/master/config/default.yml
Style/HashSyntax:
EnforcedStyle: ruby19
SupportedStyles:
- ruby19
- ruby19_no_mixed_keys
- hash_rockets
Style/StringLiterals:
@nathanfoon
nathanfoon / Cobalt2+.txt
Created February 13, 2015 20:07
Mou Cobalt Theme
editor
foreground: ffffff
background: 17344a
caret: ffc600
editor-selection
foreground: ffffff
background: 0050a4
H1
@nathanfoon
nathanfoon / .scss-lint.yml
Last active September 25, 2017 16:40
.scss-lint.yml
# Default application configuration that all configurations inherit from.
scss_files: "**/*.scss"
linters:
BangFormat:
enabled: true
space_before_bang: true
space_after_bang: false
@nathanfoon
nathanfoon / gulpfile.js
Last active September 30, 2015 15:24 — forked from mattbanks/gulpfile.js
var gulp = require('gulp'),
prefix = require('gulp-autoprefixer'),
concat = require('gulp-concat'),
imagemin = require('gulp-imagemin'),
livereload = require('gulp-livereload'),
minify = require('gulp-minify-css'),
newer = require('gulp-newer'),
pixrem = require('gulp-pixrem'),
rename = require('gulp-rename'),
sass = require('gulp-sass'),