Ajout d'un fichier .editorconfig
Issue
Description et contexte
Il faudrait ajouter le fichier .editorconfig dans le projet pour assurer la cohérence du formatage du code entre tous les contributeurs et éditeurs.
Exemple de fichier:
# EditorConfig is awesome: https://editorconfig.org
# top-most EditorConfig file
root = true
# Unix-style newlines with a newline ending every file
[*]
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
charset = utf-8
# 4 space indentation
[*.py]
indent_style = space
indent_size = 4
# 2 space indentation
[*.{js,html,y{a,}ml,md}]
indent_style = space
indent_size = 2
Critères d'acceptation
-
Créer le fichier .editorconfig
Edited by Philippe-Andre DE-CARVALHO