Pārlūkot izejas kodu

Merge pull request #297 from twiest/aa

added .yml extension to style guide.
Thomas Wiest 9 gadi atpakaļ
vecāks
revīzija
430e8ae603
1 mainītis faili ar 14 papildinājumiem un 0 dzēšanām
  1. 14 0
      docs/style_guide.adoc

+ 14 - 0
docs/style_guide.adoc

@@ -43,6 +43,20 @@ This is a hard limit and is enforced by the build bot. This check MUST NOT be di
 
 
 == Ansible
 == Ansible
 
 
+
+=== Ansible Yaml file extension
+'''
+[cols="2v,v"]
+|===
+| **Rule**
+| All Ansible Yaml files MUST have a .yml extension (and NOT .YML, .yaml etc).
+|===
+
+Ansible tooling (like `ansible-galaxy init`) create files with a .yml extension. Also, the Ansible documentation website references files with a .yml extension several times. Because of this, it is normal in the Ansible community to use a .yml extension for all Ansible Yaml files.
+
+Example: `tasks.yml`
+
+
 === Ansible Global Variables
 === Ansible Global Variables
 Ansible global variables are defined as any variables outside of ansible roles. Examples include playbook variables, variables passed in on the cli, etc.
 Ansible global variables are defined as any variables outside of ansible roles. Examples include playbook variables, variables passed in on the cli, etc.