From 194b039001fd3941bc020d15fda1c026add5476c Mon Sep 17 00:00:00 2001 From: bhaumikmistry Date: Wed, 27 Nov 2019 10:43:53 -0500 Subject: [PATCH] add directory guidelines --- CONTRIBUTION.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/CONTRIBUTION.md b/CONTRIBUTION.md index 902ceea6e..a9cb80f49 100644 --- a/CONTRIBUTION.md +++ b/CONTRIBUTION.md @@ -37,6 +37,16 @@ my_new_cpp_class.cpp is correct format - It will be used to dynamically create a directory of files and implementation. - File name validation will run on docker to ensure the validity. +#### New Directory guidelines +- Use lowercase words with ``"_"`` as separator ( no spaces or '-' allowed ) +- For instance +``` +SomeNew Fancy-Category is incorrect +some_new_fancy_category is correct + +- It will be used to dynamically create a directory of files and implementation. +- File name validation will run on docker to ensure the validity. + #### Commit Guidelines - It is recommended to keep your changes grouped logically within individual commits. Contributors find it easier to review changes that are split across multiple commits. ```