changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > org > docs / meta/style.org

changeset 9: 9a3d82d9072a
child: de53155af111
author: ellis <ellis@rwest.io>
date: Mon, 04 Dec 2023 21:09:11 -0500
permissions: -rw-r--r--
description: refactoring
1 {{{header(style,
2 Richard Westhaver,
3 ellis@rwest.io,
4 The Compiler Company Styleguide)}}}
5 
6 As an organization we maintain a styleguide[fn:1] which lists all of
7 the style guidelines we use for our code. If you are contributing to
8 one of our projects, you should review and understand the relevant
9 sections below.
10 
11 You should also review the [[file:ulang.org][ulang]] document, which may shine some light
12 on code comments and developer docs.
13 
14 [fn:1] https://google.github.io/styleguide/
15 
16 * General Programming
17 - indent-offset = 2
18 - max-line-width = 80
19 - page-length ~ 32
20 - module-length ~ 512
21 - file-size ~ 1024
22 
23 - start every source-file with a header comment
24 - use outline headings to organize your program
25 - use ulang-comments as needed for referencing bugs, notes, etc.
26 - inline documentation should be declarative. your code explains your
27  comments for you.
28 - variables, imports, and exports belong at the top of a file
29 - =main= functions belong at the bottom of a file
30 * Common Lisp
31 
32 - prefer symbol docs to comments
33 - use stdin/stdout/stderr correctly - see [[https://zenodo.org/records/3414191][CDR-11]]
34 - always prefer =core= libraries over vendored dependencies
35 - use the compiler internals - if a function or class is generally
36  useful, add it to the core
37 * Rust
38 - don't make =mod.rs= files
39  - use the =foo.rs=, =foo/*= pattern instead
40 * Emacs Lisp
41 * Org-mode
42 * Shell
43 * Python