tests: Add test for live viewer hanging when connecting after a clear
[lttng-tools.git] / CodingStyle.md
index 3074ea8836716531ea121b8055fd6e70385918c1..ea9e9d2cb472c24dd66f24618570782d541bb9b5 100644 (file)
@@ -263,6 +263,15 @@ Here are a couple of reminders:
 
 * Accept a by-value parameter and move it (when it's moveable) when you intend to copy it anyway. You can do this with most STL containers.
 
+## Python
+
+Python code should be formatted using [black](https://github.com/psf/black).
+
+## Shell (BASH)
+
+New scripts and modifications to existing scripts should pass linting
+with [Shellcheck](https://www.shellcheck.net/).
+
 ## C Style (historical)
 
 The coding style used for this project follows the the Linux kernel guide lines, except that brackets `{`, `}` should typically be used even for single-line if/else statements. Please refer to:
This page took 0.02285 seconds and 4 git commands to generate.