From ccc75121b196cf75c7cff5dac8047ca779f92707 Mon Sep 17 00:00:00 2001 From: Steven Palmesano <3100993+spalmesano0@users.noreply.github.com> Date: Thu, 18 Dec 2025 12:08:56 -0600 Subject: [PATCH] Add best practices to Solutions (#37489) So we don't forget. --- docs/solutions/README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 docs/solutions/README.md diff --git a/docs/solutions/README.md b/docs/solutions/README.md new file mode 100644 index 0000000000..984ec568e6 --- /dev/null +++ b/docs/solutions/README.md @@ -0,0 +1,12 @@ +# Solutions Best Practices + + +## General + +– Name the file what the profile does. + - For example, instead of `googlePlayProtectVerifyApps.json` (the name of the + Android policy for this control), describe what it does: + `enforce-google-play-protect.json`. +– Use kebab case in file names, with all letters in lowercase. + - Instead of `passwordPolicy.json`, use `password-policy.json`. +– Be sure to end files with an empty newline.