mirror of
https://github.com/documize/community.git
synced 2025-07-24 23:59:47 +02:00
initial commit
This commit is contained in:
commit
18933c6767
1841 changed files with 810642 additions and 0 deletions
21
gocheck.sh
Executable file
21
gocheck.sh
Executable file
|
@ -0,0 +1,21 @@
|
|||
# Copyright 2013-2014 Documize (http://www.documize.com)
|
||||
|
||||
# run github.com/alecthomas/gometalinter to check correctness, style and error handling
|
||||
# also check spelling with github.com/client9/misspell
|
||||
# Only set up to look at non-vendored code, should be run from top level
|
||||
for dir in $(find documize wordsmith sdk plugin-* -type d -print | grep -v -e "web" | grep -v -e "templates" | sort | tr '\n' ' ')
|
||||
do
|
||||
echo "*** " $dir
|
||||
gometalinter --vendor --disable='gotype' --deadline=30s $dir | sort
|
||||
misspell $dir/*.go
|
||||
done
|
||||
|
||||
# run github.com/FiloSottile/vendorcheck (including tests)
|
||||
echo "*** vendorcheck"
|
||||
for dir in documize sdk
|
||||
do
|
||||
cd $dir
|
||||
vendorcheck -t . | grep -v 'github.com/documize/community'
|
||||
cd ..
|
||||
done
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue