This website contains age-restricted materials including nudity and explicit depictions of sexual activity.
By entering, you affirm that you are at least 18 years of age or the age of majority in the jurisdiction you are accessing the website from and you consent to viewing sexually explicit content.
Someone else already mentioned Rust, but to add to it,
rustup
installsrustfmt
(opinionated formatter) andclippy
(linter) by default, but you can choose not to run them or even install them.rustfmt
has a few configuration options, but is for the most part strict in how it formats code.PEP8 is nice since it sets some common rules across Python projects, but I’m not a fan of some of the decisions they made. The biggest one for me was discouraging defining variables/attributes/etc that use the same name as built-ins. That means no variable named
input
, no attr on your data model namedid
, etc. Still, since the language doesn’t strictly enforce this, you can easily adjust these rules to meet your project’s needs.I believe
go
requires you to run the bundled formatter to even compile the code, but I could be misremembering.