This file contains 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
def lint_entire_project(self, local_repo_path): | |
"""Runs quality checks on the local repo and returns the output as a string.""" | |
self.state = BUILD_RUNNING | |
self.save() | |
process = subprocess.Popen(['flake8', local_repo_path], | |
stdout=subprocess.PIPE, | |
stderr=subprocess.PIPE, | |
shell=False) |
This file contains 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
syntax on | |
filetype indent on | |
set number | |
set autoindent | |
set tabstop=4 | |
set expandtab | |
set shiftwidth=4 | |
highlight LineNr ctermfg=grey |
This file contains 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
# -*- coding: utf-8 -*- | |
import codecs | |
import subprocess | |
from fdfgen import forge_fdf | |
from django.core.exceptions import ImproperlyConfigured | |
from django.template import engines | |
from django.template.backends.base import BaseEngine | |
from django.template.engine import Engine, _dirs_undefined |
This file contains 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
[user] | |
name = Grant McConnaughey | |
email = [email protected] | |
[color] | |
ui = true | |
[core] | |
excludesfile = ~/.gitignore_global | |
autocrlf = input | |
[alias] | |
lg = log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit |
This file contains 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
#!/bin/bash | |
# Usage: | |
# ./gvm-check.sh grails_version | |
[[ -s "$HOME/.gvm/bin/gvm-init.sh" ]] && source "$HOME/.gvm/bin/gvm-init.sh" | |
CHECK="" | |
GRAILS_VERSION=$1 | |
while [ true ]; do |
NewerOlder