From 39b102d8aaeff0f1c587935ce242e6dc18bac58a Mon Sep 17 00:00:00 2001 From: Skia Date: Mon, 27 Feb 2017 15:40:48 +0100 Subject: [PATCH] README: add counting lines of code --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index e3770b20..d1cbea94 100644 --- a/README.md +++ b/README.md @@ -56,6 +56,12 @@ Finally, when building a class based view, which is highly advised, you just hav CanEditMixin, or CanViewMixin, which are located in core.views. Your view will then be protected using either the appropriate group fields, or the right method to check user permissions. +#### Counting the number of line of code + +``` +# apt install cloc +$ cloc --exclude-dir=doc,env . +```