From 49b3f2bcaaec64dfc8af140adfe42af21918298e Mon Sep 17 00:00:00 2001 From: Paul Pacheco Date: Thu, 11 Oct 2018 20:56:21 -0500 Subject: [PATCH] Fix bullet indentation Static analysis keeps bitching about this. --- CONTRIBUTING.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index eb59912b5..a9be87cc9 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -23,9 +23,9 @@ Always write a clear log message for your commits. One-line messages are fine fo > A paragraph describing what changed and its impact." Submit your pull requests to the right branch: - * fixes for bug fixes - * improvements for refactorings and cleanups, we love to delete code. - * features for new shiny features you want in HLAPI. +* fixes for bug fixes +* improvements for refactorings and cleanups, we love to delete code. +* features for new shiny features you want in HLAPI. If your pull request breaks any test, it has no hope of being merged. @@ -33,9 +33,9 @@ If your pull request breaks any test, it has no hope of being merged. Start reading our code and you'll get the hang of it. We optimize for readability: - * We indent using 4 spaces (soft tabs) - * We value simplicity. The code should be easy to read and avoid magic - * We use default visual studio code formatting standard - * This is open source software. Consider the people who will read your code, and make it look nice for them. It's sort of like driving a car: Perhaps you love doing donuts when you're alone, but with passengers the goal is to make the ride as smooth as possible. +* We indent using 4 spaces (soft tabs) +* We value simplicity. The code should be easy to read and avoid magic +* We use default visual studio code formatting standard +* This is open source software. Consider the people who will read your code, and make it look nice for them. It's sort of like driving a car: Perhaps you love doing donuts when you're alone, but with passengers the goal is to make the ride as smooth as possible. Thanks.