Starting a quick pen for animating eyes to use on Cup of Voodoo later on.
A Pen by Daniel W. Robert on CodePen.
Starting a quick pen for animating eyes to use on Cup of Voodoo later on.
A Pen by Daniel W. Robert on CodePen.
| // Include Gulp | |
| var gulp = require( 'gulp' ); | |
| // Include Plugins | |
| var sass = require( 'gulp-ruby-sass' ), | |
| autoprefixer = require( 'gulp-autoprefixer' ), | |
| minifycss = require( 'gulp-minify-css' ), | |
| imagemin = require( 'gulp-imagemin' ), | |
| jshint = require( 'gulp-jshint' ), | |
| concat = require( 'gulp-concat' ), |
| { | |
| "bold_folder_labels": true, | |
| "color_scheme": "Packages/User/SublimeLinter/Solarized (Dark) (SL).tmTheme", | |
| // "color_scheme": "Packages/Material Theme/schemes/Material-Theme.tmTheme", | |
| "draw_white_space": "all", | |
| "fade_fold_buttons": false, | |
| "folder_exclude_patterns": | |
| [ | |
| ".svn", | |
| ".git", |
| # editorconfig.org | |
| root = true | |
| [*] | |
| indent_style = space | |
| indent_size = 4 | |
| end_of_line = lf | |
| charset = utf-8 | |
| trim_trailing_whitespace = true | |
| insert_final_newline = true |
| # Require any additional compass plugins here: | |
| # example: | |
| # require "susy" | |
| project_type = :stand_alone | |
| # Set this to the root of your project when deployed: | |
| http_path = "/" | |
| sass_dir = "scss" | |
| css_dir = "css" |
| { | |
| "exclude": [ | |
| ".git/**", | |
| "node_modules/**" | |
| ], | |
| "vendor-prefix-align": false, | |
| "sort-order": [ [ | |
| "-webkit-animation", | |
| "-moz-animation", | |
| "-ms-animation", |
| .htaccess | |
| wp-*.php | |
| xmlrpc.php | |
| wp-admin/ | |
| wp-includes/ | |
| wp-content/uploads/ | |
| wp-content/blogs.dir/ | |
| wp-content/upgrade/* | |
| wp-content/backup-db/* | |
| wp-content/advanced-cache.php |
| #!/bin/bash | |
| echo "## No removing or modifying non-presentational hooks (ROW 59):" | |
| echo "------------------------------------------------" | |
| git grep -n "remove_action" | |
| git grep -n "remove_filter" | |
| echo " " | |
| echo " " | |
| echo "## No shortcodes are allowed (ROW 60):" |
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |
| # This file is for unifying the coding style for different editors and IDEs | |
| # editorconfig.org | |
| # WordPress Coding Standards | |
| # https://make.wordpress.org/core/handbook/coding-standards/ | |
| root = true | |
| [*] | |
| charset = utf-8 |