From 9d1d646a92bb7afaaab96362f66b2979446ba681 Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Wed, 18 Dec 2019 16:16:44 +1000 Subject: [PATCH] update docs --- README.contributing | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/README.contributing b/README.contributing index e3281907c..22db0abcc 100644 --- a/README.contributing +++ b/README.contributing @@ -46,9 +46,13 @@ For consistency, changes should maintain the existing code style - camelCaps, Tests Must Pass ---------------- -Please check that tools/tests.sh passes all tests prior to submitting a -change. If your change is not covered by existing tests, ideally you'll add a -new test. +Please make sure 'make check' completes successfully before submitting code. + +If your change is to anki/ and not covered by the existing unit tests, please +consider adding a unit test at the same time. + +If 'make check' fails because the JS styling doesn't match, you can run +'make pretty' to automatically adjust the styling. Do One Thing -------------