Skip to content

Instantly share code, notes, and snippets.

package partial
import (
"encoding/json"
"fmt"
"reflect"
)
// OpType defines possible CRUD operations.
type OpType int
#!/bin/bash
pylint --rcfile=pylint_rcfile.txt -r n -f parseable --disable=E1101,E1103,W0312,F0401,R0201,R0903,W0232,W0703 "$1" 2>/dev/null
pyflakes "$1"
pep8 --ignore=E126,E221,E701,E202,W191,E101 --repeat "$1"
true