This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"extends": "airbnb", | |
"rules": { | |
"no-tabs": 0, | |
"indent": [ | |
"error", | |
"tab" | |
], | |
"no-multi-spaces": [ | |
"error", { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
editor | |
foreground: ffffff | |
background: 17344a | |
caret: ffc600 | |
editor-selection | |
foreground: ffffff | |
background: 0050a4 | |
H1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Default application configuration that all configurations inherit from. | |
scss_files: "**/*.scss" | |
linters: | |
BangFormat: | |
enabled: true | |
space_before_bang: true | |
space_after_bang: false |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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'), |