For Python projects, Ruff should be used with the corresponding ruff.toml file in this repository
For Javascript and Typescript projects Biome should be used with the corresponding biome.json file in this directory
Where possible use lower camel case for variable names, such as:
variableName = 10
Furthemore where possible use type definitions, this helps make your code a lot more readable:
variableName: int = 10
def main(argument: int) -> int:
return (variableName + 10)
main(variableName)
Use four spaces to indent code (you can set your code editor to make tabs 4 spaces)