Add this to THEME-NAME.info.yml
:
resources:
pattern-lab: /themes/custom/THEME_NAME/pattern-lab/public/
sassdoc: /themes/custom/THEME_NAME/dest/sassdoc/
function lintJson() { | |
return gulp.src('*.theme.json') | |
.pipe(jsonlint()) | |
.pipe(jsonlint.reporter()); | |
} | |
gulp.task('validate:json', 'Test JSON', function() { | |
return lintJson().pipe(jsonlint.failAfterError()); | |
}); | |
tasks.validate.push('validate:json'); |
var jsonFiles = ['*.theme.json']; | |
// Setup the linting | |
function lintJson() { | |
return gulp.src(jsonFiles) | |
.pipe(jsonlint()) | |
.pipe(jsonlint.reporter()); | |
} | |
// Add a validate task that will fail on lint error |
-- AppleScript -- | |
-- This example is meant as a simple starting point to show how to get the information in the simplest available way. | |
-- Keep in mind that when asking for a `return` after another, only the first one will be output. | |
-- This method is as good as its JXA counterpart. | |
-- Google Chrome | |
tell application "Google Chrome" to return title of active tab of front window | |
tell application "Google Chrome" to return URL of active tab of front window | |
-- Google Chrome Canary |
Locate the section for your github remote in the .git/config
file. It looks like this:
[remote "origin"]
fetch = +refs/heads/*:refs/remotes/origin/*
url = [email protected]:joyent/node.git
Now add the line fetch = +refs/pull/*/head:refs/remotes/origin/pr/*
to this section. Obviously, change the github url to match your project's URL. It ends up looking like this:
set backspace=2 " backspace in insert mode works like normal editor | |
set shiftwidth=2 " indent by 2 spaces when auto-indenting | |
set softtabstop=2 " indent by 2 spaces when hitting tab | |
syntax on " syntax highlighting | |
filetype indent on " activates indenting for files | |
set autoindent " auto indenting | |
set number " line numbers | |
colorscheme desert " colorscheme desert | |
set nobackup " get rid of anoying ~file |
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
Version 2, December 2004 | |
Copyright (C) 2011 Jed Schmidt <http://jed.is> | |
Everyone is permitted to copy and distribute verbatim or modified | |
copies of this license document, and changing it is allowed as long | |
as the name is changed. | |
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE |