view Makefile @ 96:c8c36f34ff5a

Change model class pattern: * Using normal constructor creates a new object, that can added to the database using the {{{insert()}}} method. * For getting an existing object, the class method {{{fetch()}}} must be used. It's similar to {{{select()}}}, but returns only one object.
author cmlenz
date Sun, 17 Jul 2005 20:14:43 +0000
parents 196009657e5e
children 4289fa18de0f
line wrap: on
line source
PYLINT_MSGS = C0101,E0201,E0213,W0103,W0704,R0921,R0923
PYTHONPATH = .

all: pylint

pylint:
	PYTHONPATH=$(PYTHONPATH) pylint --parseable=y --disable-msg=$(PYLINT_MSGS) --ignore=tests bitten > build/pylint-results.txt
Copyright (C) 2012-2017 Edgewall Software