docs: update contributing/formatting/code

This commit is contained in:
coded (Samuel Shuert) 2024-05-06 20:22:27 +00:00 committed by Auxolotl Wiki
parent 26620324c1
commit f8a1ddedce

View file

@ -2,7 +2,7 @@
title: Code Standards title: Code Standards
description: Using .editorconfig description: Using .editorconfig
published: true published: true
date: 2024-05-05T21:38:04.029Z date: 2024-05-06T20:22:26.149Z
tags: tags:
editor: markdown editor: markdown
dateCreated: 2024-05-05T18:30:37.455Z dateCreated: 2024-05-05T18:30:37.455Z
@ -18,7 +18,7 @@ charset = utf-8
trim_trailing_whitespace = true trim_trailing_whitespace = true
end_of_line = lf end_of_line = lf
insert_final_newline = true insert_final_newline = true
indent_style = space indent_style = tabs
``` ```
And add any additional types you need from below, making sure to separate each section with a new line. And add any additional types you need from below, making sure to separate each section with a new line.
@ -32,6 +32,7 @@ Using nixfmt-rfc-style
[*.nix] [*.nix]
indent_size = 2 indent_size = 2
insert_final_newline = false insert_final_newline = false
indent_style = space
``` ```
## Python ## Python
@ -39,6 +40,7 @@ Using pycodestyle
```editorconfig ```editorconfig
[*.{py,py3}] [*.{py,py3}]
indent_size = 4 indent_size = 4
indent_style = space
``` ```
## Node.js ## Node.js