2016-06-26 18:49:35 +02:00
|
|
|
# Code style and conventions
|
2016-05-15 18:28:38 +02:00
|
|
|
|
2020-06-08 11:33:04 +02:00
|
|
|
One can summarize Zulip's coding philosophy as a relentless focus on
|
2020-05-19 23:22:15 +02:00
|
|
|
making the codebase easy to understand and difficult to make dangerous
|
2021-08-20 21:53:28 +02:00
|
|
|
mistakes in. The majority of work in any large software development
|
2020-05-19 23:22:15 +02:00
|
|
|
project is understanding the existing code so one can debug or modify
|
|
|
|
it, and investments in code readability usually end up paying for
|
|
|
|
themselves when someone inevitably needs to debug or improve the code.
|
|
|
|
|
|
|
|
When there's something subtle or complex to explain or ensure in the
|
|
|
|
implementation, we try hard to make it clear, through a combination of
|
|
|
|
clean and intuitive interfaces, well-named variables and functions,
|
|
|
|
comments/docstrings, and commit messages (roughly in order of priority
|
|
|
|
-- if you can make something clear with a good interface, that's a lot
|
|
|
|
better than writing a comment explaining how the bad interface works).
|
|
|
|
|
|
|
|
This page documents code style policies that every Zulip developer
|
2021-08-20 21:53:28 +02:00
|
|
|
should understand. We aim for this document to be short and focused
|
2020-06-08 11:33:04 +02:00
|
|
|
only on details that cannot be easily enforced another way (e.g.
|
2020-05-19 23:22:15 +02:00
|
|
|
through linters, automated tests, subsystem design that makes classes
|
2021-08-20 21:53:28 +02:00
|
|
|
of mistakes unlikely, etc.). This approach minimizes the cognitive
|
2020-05-19 23:22:15 +02:00
|
|
|
load of ensuring a consistent coding style for both contributors and
|
|
|
|
maintainers.
|
|
|
|
|
2016-06-26 18:49:35 +02:00
|
|
|
## Be consistent!
|
2016-05-15 18:28:38 +02:00
|
|
|
|
|
|
|
Look at the surrounding code, or a similar part of the project, and try
|
|
|
|
to do the same thing. If you think the other code has actively bad
|
|
|
|
style, fix it (in a separate commit).
|
|
|
|
|
2021-11-18 07:25:55 +01:00
|
|
|
When in doubt, ask in
|
|
|
|
[#development help](https://chat.zulip.org/#narrow/stream/49-development-help).
|
2016-05-15 18:28:38 +02:00
|
|
|
|
2016-06-26 18:49:35 +02:00
|
|
|
## Lint tools
|
2016-05-15 18:28:38 +02:00
|
|
|
|
|
|
|
You can run them all at once with
|
|
|
|
|
2021-08-20 07:09:04 +02:00
|
|
|
```bash
|
|
|
|
./tools/lint
|
|
|
|
```
|
2016-05-15 18:28:38 +02:00
|
|
|
|
|
|
|
You can set this up as a local Git commit hook with
|
|
|
|
|
2021-08-20 07:09:04 +02:00
|
|
|
```bash
|
|
|
|
tools/setup-git-repo
|
|
|
|
```
|
2016-05-15 18:28:38 +02:00
|
|
|
|
|
|
|
The Vagrant setup process runs this for you.
|
|
|
|
|
2017-04-21 23:07:06 +02:00
|
|
|
`lint` runs many lint checks in parallel, including
|
2016-05-15 18:28:38 +02:00
|
|
|
|
2021-08-20 22:54:08 +02:00
|
|
|
- JavaScript ([ESLint](https://eslint.org/),
|
|
|
|
[Prettier](https://prettier.io/))
|
|
|
|
- Python ([mypy](http://mypy-lang.org/),
|
2022-10-30 00:07:03 +02:00
|
|
|
[ruff](https://github.com/charliermarsh/ruff),
|
2021-08-20 22:54:08 +02:00
|
|
|
[Black](https://github.com/psf/black),
|
|
|
|
[isort](https://pycqa.github.io/isort/))
|
|
|
|
- templates
|
|
|
|
- Puppet configuration
|
|
|
|
- custom checks (e.g. trailing whitespace and spaces-not-tabs)
|
2016-05-15 18:28:38 +02:00
|
|
|
|
2016-06-26 18:49:35 +02:00
|
|
|
## Secrets
|
2016-05-15 18:28:38 +02:00
|
|
|
|
|
|
|
Please don't put any passwords, secret access keys, etc. inline in the
|
2022-08-25 21:26:41 +02:00
|
|
|
code. Instead, use the `get_secret` function or the `get_mandatory_secret`
|
|
|
|
function in `zproject/config.py` to read secrets from `/etc/zulip/secrets.conf`.
|
2016-05-15 18:28:38 +02:00
|
|
|
|
2016-06-26 18:49:35 +02:00
|
|
|
## Dangerous constructs
|
2016-05-15 18:28:38 +02:00
|
|
|
|
2020-05-18 23:01:41 +02:00
|
|
|
### Too many database queries
|
2016-05-15 18:28:38 +02:00
|
|
|
|
|
|
|
Look out for Django code like this:
|
|
|
|
|
2021-08-20 07:09:04 +02:00
|
|
|
```python
|
|
|
|
bars = Bar.objects.filter(...)
|
|
|
|
for bar in bars:
|
|
|
|
foo = bar.foo
|
|
|
|
# Make use of foo
|
|
|
|
```
|
2016-05-15 18:28:38 +02:00
|
|
|
|
2020-05-18 23:01:41 +02:00
|
|
|
...because it equates to:
|
|
|
|
|
2021-08-20 07:09:04 +02:00
|
|
|
```python
|
|
|
|
bars = Bar.objects.filter(...)
|
|
|
|
for bar in bars:
|
|
|
|
foo = Foo.objects.get(id=bar.foo.id)
|
|
|
|
# Make use of foo
|
|
|
|
```
|
2020-05-18 23:01:41 +02:00
|
|
|
|
2021-08-20 21:53:28 +02:00
|
|
|
...which makes a database query for every Bar. While this may be fast
|
|
|
|
locally in development, it may be quite slow in production! Instead,
|
2020-05-18 23:01:41 +02:00
|
|
|
tell Django's [QuerySet
|
|
|
|
API](https://docs.djangoproject.com/en/dev/ref/models/querysets/) to
|
|
|
|
_prefetch_ the data in the initial query:
|
|
|
|
|
2021-08-20 07:09:04 +02:00
|
|
|
```python
|
|
|
|
bars = Bar.objects.filter(...).select_related()
|
|
|
|
for bar in bars:
|
|
|
|
foo = bar.foo # This doesn't take another query, now!
|
|
|
|
# Make use of foo
|
|
|
|
```
|
2016-05-15 18:28:38 +02:00
|
|
|
|
|
|
|
If you can't rewrite it as a single query, that's a sign that something
|
|
|
|
is wrong with the database schema. So don't defer this optimization when
|
|
|
|
performing schema changes, or else you may later find that it's
|
|
|
|
impossible.
|
|
|
|
|
2020-05-18 23:01:41 +02:00
|
|
|
### UserProfile.objects.get() / Client.objects.get() / etc.
|
2016-05-15 18:28:38 +02:00
|
|
|
|
|
|
|
In our Django code, never do direct `UserProfile.objects.get(email=foo)`
|
|
|
|
database queries. Instead always use `get_user_profile_by_{email,id}`.
|
|
|
|
There are 3 reasons for this:
|
|
|
|
|
|
|
|
1. It's guaranteed to correctly do a case-inexact lookup
|
|
|
|
2. It fetches the user object from remote cache, which is faster
|
2020-05-18 23:01:41 +02:00
|
|
|
3. It always fetches a UserProfile object which has been queried
|
|
|
|
using `.select_related()` (see above!), and thus will perform well
|
|
|
|
when one later accesses related models like the Realm.
|
2016-05-15 18:28:38 +02:00
|
|
|
|
2020-05-18 23:05:52 +02:00
|
|
|
Similarly we have `get_client` and `access_stream_by_id` /
|
|
|
|
`access_stream_by_name` functions to fetch those commonly accessed
|
|
|
|
objects via remote cache.
|
2016-05-15 18:28:38 +02:00
|
|
|
|
|
|
|
### Using Django model objects as keys in sets/dicts
|
|
|
|
|
|
|
|
Don't use Django model objects as keys in sets/dictionaries -- you will
|
|
|
|
get unexpected behavior when dealing with objects obtained from
|
|
|
|
different database queries:
|
|
|
|
|
2020-05-18 23:15:27 +02:00
|
|
|
For example, the following will, surprisingly, fail:
|
|
|
|
|
2021-08-20 07:09:04 +02:00
|
|
|
```python
|
2020-05-18 23:15:27 +02:00
|
|
|
# Bad example -- will raise!
|
|
|
|
obj: UserProfile = get_user_profile_by_id(17)
|
|
|
|
some_objs = UserProfile.objects.get(id=17)
|
|
|
|
assert obj in set([some_objs])
|
|
|
|
```
|
|
|
|
|
|
|
|
You should work with the IDs instead:
|
|
|
|
|
2021-08-20 07:09:04 +02:00
|
|
|
```python
|
2020-05-18 23:15:27 +02:00
|
|
|
obj: UserProfile = get_user_profile_by_id(17)
|
|
|
|
some_objs = UserProfile.objects.get(id=17)
|
|
|
|
assert obj.id in set([o.id for i in some_objs])
|
|
|
|
```
|
2016-05-15 18:28:38 +02:00
|
|
|
|
2021-08-20 22:54:08 +02:00
|
|
|
### user_profile.save()
|
2016-05-15 18:28:38 +02:00
|
|
|
|
2021-08-20 22:54:08 +02:00
|
|
|
You should always pass the update_fields keyword argument to .save()
|
2016-05-15 18:28:38 +02:00
|
|
|
when modifying an existing Django model object. By default, .save() will
|
|
|
|
overwrite every value in the column, which results in lots of race
|
|
|
|
conditions where unrelated changes made by one thread can be
|
|
|
|
accidentally overwritten by another thread that fetched its UserProfile
|
|
|
|
object before the first thread wrote out its change.
|
|
|
|
|
|
|
|
### Using raw saves to update important model objects
|
|
|
|
|
2022-04-14 00:48:36 +02:00
|
|
|
In most cases, we already have a function in `zerver.actions` with
|
2021-08-20 22:54:08 +02:00
|
|
|
a name like do_activate_user that will correctly handle lookups,
|
2016-05-15 18:28:38 +02:00
|
|
|
caching, and notifying running browsers via the event system about your
|
|
|
|
change. So please check whether such a function exists before writing
|
|
|
|
new code to modify a model object, since your new code has a good chance
|
|
|
|
of getting at least one of these things wrong.
|
|
|
|
|
2017-02-28 00:37:33 +01:00
|
|
|
### Naive datetime objects
|
|
|
|
|
2022-02-24 21:15:43 +01:00
|
|
|
Python allows datetime objects to not have an associated time zone, which can
|
2017-02-28 00:37:33 +01:00
|
|
|
cause time-related bugs that are hard to catch with a test suite, or bugs
|
|
|
|
that only show up during daylight savings time.
|
|
|
|
|
2022-02-24 21:15:43 +01:00
|
|
|
Good ways to make time-zone-aware datetimes are below. We import time zone
|
2021-09-08 00:23:24 +02:00
|
|
|
libraries as `from datetime import datetime, timezone` and
|
|
|
|
`from django.utils.timezone import now as timezone_now`.
|
2020-05-18 23:16:34 +02:00
|
|
|
|
|
|
|
Use:
|
2021-08-20 22:54:08 +02:00
|
|
|
|
2021-08-20 21:45:39 +02:00
|
|
|
- `timezone_now()` to get a datetime when Django is available, such as
|
2020-05-18 23:16:34 +02:00
|
|
|
in `zerver/`.
|
2021-08-20 21:45:39 +02:00
|
|
|
- `datetime.now(tz=timezone.utc)` when Django is not available, such as
|
2020-05-18 23:16:34 +02:00
|
|
|
for bots and scripts.
|
2021-08-20 21:45:39 +02:00
|
|
|
- `datetime.fromtimestamp(timestamp, tz=timezone.utc)` if creating a
|
2017-02-28 00:37:33 +01:00
|
|
|
datetime from a timestamp. This is also available as
|
|
|
|
`zerver.lib.timestamp.timestamp_to_datetime`.
|
2021-08-20 21:45:39 +02:00
|
|
|
- `datetime.strptime(date_string, format).replace(tzinfo=timezone.utc)` if
|
2017-02-28 00:37:33 +01:00
|
|
|
creating a datetime from a formatted string that is in UTC.
|
|
|
|
|
2022-02-24 21:15:43 +01:00
|
|
|
Idioms that result in time-zone-naive datetimes, and should be avoided, are
|
2017-02-28 00:37:33 +01:00
|
|
|
`datetime.now()` and `datetime.fromtimestamp(timestamp)` without a `tz`
|
|
|
|
parameter, `datetime.utcnow()` and `datetime.utcfromtimestamp()`, and
|
|
|
|
`datetime.strptime(date_string, format)` without replacing the `tzinfo` at
|
|
|
|
the end.
|
|
|
|
|
|
|
|
Additional notes:
|
2021-08-20 22:54:08 +02:00
|
|
|
|
2021-08-20 21:45:39 +02:00
|
|
|
- Especially in scripts and puppet configuration where Django is not
|
2017-02-28 00:37:33 +01:00
|
|
|
available, using `time.time()` to get timestamps can be cleaner than
|
|
|
|
dealing with datetimes.
|
2021-08-20 21:45:39 +02:00
|
|
|
- All datetimes on the backend should be in UTC, unless there is a good
|
2017-02-28 00:37:33 +01:00
|
|
|
reason to do otherwise.
|
|
|
|
|
2016-05-15 18:28:38 +02:00
|
|
|
### `x.attr('zid')` vs. `rows.id(x)`
|
|
|
|
|
|
|
|
Our message row DOM elements have a custom attribute `zid` which
|
|
|
|
contains the numerical message ID. **Don't access this directly as**
|
|
|
|
`x.attr('zid')` ! The result will be a string and comparisons (e.g. with
|
|
|
|
`<=`) will give the wrong result, occasionally, just enough to make a
|
|
|
|
bug that's impossible to track down.
|
|
|
|
|
|
|
|
You should instead use the `id` function from the `rows` module, as in
|
|
|
|
`rows.id(x)`. This returns a number. Even in cases where you do want a
|
|
|
|
string, use the `id` function, as it will simplify future code changes.
|
|
|
|
In most contexts in JavaScript where a string is needed, you can pass a
|
|
|
|
number without any explicit conversion.
|
|
|
|
|
2020-02-08 02:09:50 +01:00
|
|
|
### JavaScript `const` and `let`
|
2016-05-15 18:28:38 +02:00
|
|
|
|
2020-02-08 02:09:50 +01:00
|
|
|
Always declare JavaScript variables using `const` or `let` rather than
|
2020-08-31 00:10:57 +02:00
|
|
|
`var`.
|
2019-03-28 20:55:05 +01:00
|
|
|
|
|
|
|
### JavaScript and TypeScript `for (i in myArray)`
|
2016-05-15 18:28:38 +02:00
|
|
|
|
|
|
|
Don't use it:
|
2020-03-27 01:32:21 +01:00
|
|
|
[[1]](https://stackoverflow.com/questions/500504/javascript-for-in-with-arrays),
|
2016-10-24 20:06:43 +02:00
|
|
|
[[2]](https://google.github.io/styleguide/javascriptguide.xml#for-in_loop),
|
2020-03-27 01:32:21 +01:00
|
|
|
[[3]](https://www.jslint.com/help.html#forin)
|
2016-05-15 18:28:38 +02:00
|
|
|
|
2017-03-01 05:41:40 +01:00
|
|
|
### Translation tags
|
|
|
|
|
|
|
|
Remember to
|
2019-09-30 19:37:56 +02:00
|
|
|
[tag all user-facing strings for translation](../translating/translating.md), whether
|
2019-03-28 20:55:05 +01:00
|
|
|
they are in HTML templates or JavaScript/TypeScript editing the HTML (e.g. error
|
2017-03-01 05:41:40 +01:00
|
|
|
messages).
|
|
|
|
|
2020-05-18 23:18:05 +02:00
|
|
|
### Paths to state or log files
|
2016-05-15 18:28:38 +02:00
|
|
|
|
2020-05-18 23:18:05 +02:00
|
|
|
When writing out state or log files, always pass an absolute path
|
2020-08-19 21:55:28 +02:00
|
|
|
through `zulip_path` (found in `zproject/computed_settings.py`), which
|
|
|
|
will do the right thing in both development and production.
|
2016-05-15 18:28:38 +02:00
|
|
|
|
2016-06-26 18:49:35 +02:00
|
|
|
## JS array/object manipulation
|
2016-05-15 18:28:38 +02:00
|
|
|
|
2020-02-08 02:09:50 +01:00
|
|
|
For functions that operate on arrays or JavaScript objects, you should
|
|
|
|
generally use modern
|
|
|
|
[ECMAScript](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Language_Resources)
|
|
|
|
primitives such as [`for … of`
|
|
|
|
loops](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/for...of),
|
2021-09-08 00:23:24 +02:00
|
|
|
[`Array.prototype.{entries, every, filter, find, indexOf, map, some}`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array),
|
|
|
|
[`Object.{assign, entries, keys, values}`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object),
|
2020-02-08 02:09:50 +01:00
|
|
|
[spread
|
|
|
|
syntax](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Spread_syntax),
|
|
|
|
and so on. Our Babel configuration automatically transpiles and
|
|
|
|
polyfills these using [`core-js`](https://github.com/zloirock/core-js)
|
|
|
|
when necessary. We used to use the
|
2020-03-27 01:32:21 +01:00
|
|
|
[Underscore](https://underscorejs.org/) library, but that should be
|
2020-02-08 02:09:50 +01:00
|
|
|
avoided in new code.
|
2016-05-15 18:28:38 +02:00
|
|
|
|
2016-06-26 18:49:35 +02:00
|
|
|
## More arbitrary style things
|
2016-05-15 18:28:38 +02:00
|
|
|
|
2017-10-06 22:27:59 +02:00
|
|
|
### Line length
|
2016-05-15 18:28:38 +02:00
|
|
|
|
2017-10-05 14:41:01 +02:00
|
|
|
We have an absolute hard limit on line length only for some files, but
|
|
|
|
we should still avoid extremely long lines. A general guideline is:
|
|
|
|
refactor stuff to get it under 85 characters, unless that makes the
|
|
|
|
code a lot uglier, in which case it's fine to go up to 120 or so.
|
2016-05-15 18:28:38 +02:00
|
|
|
|
2019-03-28 20:55:05 +01:00
|
|
|
### JavaScript and TypeScript
|
2016-05-15 18:28:38 +02:00
|
|
|
|
2020-07-22 21:25:49 +02:00
|
|
|
Our JavaScript and TypeScript code is formatted with
|
2021-08-20 21:53:28 +02:00
|
|
|
[Prettier](https://prettier.io/). You can ask Prettier to reformat
|
2021-09-08 00:23:24 +02:00
|
|
|
all code via our [linter tool](../testing/linters.md) with
|
2021-08-20 21:53:28 +02:00
|
|
|
`tools/lint --only=prettier --fix`. You can also [integrate it with your
|
2020-07-22 21:25:49 +02:00
|
|
|
editor](https://prettier.io/docs/en/editors.html).
|
2016-05-15 18:28:38 +02:00
|
|
|
|
2017-10-05 16:03:58 +02:00
|
|
|
Combine adjacent on-ready functions, if they are logically related.
|
2016-05-15 18:28:38 +02:00
|
|
|
|
|
|
|
The best way to build complicated DOM elements is a Mustache template
|
2019-07-12 00:52:56 +02:00
|
|
|
like `static/templates/message_reactions.hbs`. For simpler things
|
2016-05-15 18:28:38 +02:00
|
|
|
you can use jQuery DOM building APIs like so:
|
|
|
|
|
2021-08-20 07:09:04 +02:00
|
|
|
```js
|
|
|
|
var new_tr = $('<tr />').attr('id', object.id);
|
|
|
|
```
|
2016-05-15 18:28:38 +02:00
|
|
|
|
2017-10-04 21:43:12 +02:00
|
|
|
Passing a HTML string to jQuery is fine for simple hardcoded things
|
|
|
|
that don't need internationalization:
|
2016-05-15 18:28:38 +02:00
|
|
|
|
2021-08-20 07:09:04 +02:00
|
|
|
```js
|
|
|
|
foo.append('<p id="selected">/</p>');
|
|
|
|
```
|
2016-05-15 18:28:38 +02:00
|
|
|
|
|
|
|
but avoid programmatically building complicated strings.
|
|
|
|
|
|
|
|
We used to favor attaching behaviors in templates like so:
|
|
|
|
|
2021-08-20 07:09:04 +02:00
|
|
|
```js
|
|
|
|
<p onclick="select_zerver({{id}})">
|
|
|
|
```
|
2016-05-15 18:28:38 +02:00
|
|
|
|
|
|
|
but there are some reasons to prefer attaching events using jQuery code:
|
|
|
|
|
2021-08-20 22:54:08 +02:00
|
|
|
- Potential huge performance gains by using delegated events where
|
|
|
|
possible
|
|
|
|
- When calling a function from an `onclick` attribute, `this` is not
|
|
|
|
bound to the element like you might think
|
|
|
|
- jQuery does event normalization
|
2016-05-15 18:28:38 +02:00
|
|
|
|
|
|
|
Either way, avoid complicated JavaScript code inside HTML attributes;
|
|
|
|
call a helper function instead.
|
|
|
|
|
|
|
|
### HTML / CSS
|
|
|
|
|
2021-08-20 21:53:28 +02:00
|
|
|
Our CSS is formatted with [Prettier](https://prettier.io/). You can
|
2020-08-04 23:58:56 +02:00
|
|
|
ask Prettier to reformat all code via our [linter
|
|
|
|
tool](../testing/linters.md) with `tools/lint --only=prettier --fix`.
|
|
|
|
You can also [integrate it with your
|
|
|
|
editor](https://prettier.io/docs/en/editors.html).
|
|
|
|
|
2017-10-06 10:12:47 +02:00
|
|
|
Avoid using the `style=` attribute unless the styling is actually
|
|
|
|
dynamic. Instead, define logical classes and put your styles in
|
|
|
|
external CSS files such as `zulip.css`.
|
2016-05-15 18:28:38 +02:00
|
|
|
|
|
|
|
Don't use the tag name in a selector unless you have to. In other words,
|
|
|
|
use `.foo` instead of `span.foo`. We shouldn't have to care if the tag
|
|
|
|
type changes in the future.
|
|
|
|
|
|
|
|
### Python
|
|
|
|
|
2021-08-20 22:54:08 +02:00
|
|
|
- Our Python code is formatted with
|
|
|
|
[Black](https://github.com/psf/black) and
|
|
|
|
[isort](https://pycqa.github.io/isort/). The [linter
|
|
|
|
tool](../testing/linters.md) enforces this by running Black and
|
|
|
|
isort in check mode, or in write mode with
|
|
|
|
`tools/lint --only=black,isort --fix`. You may find it helpful to
|
|
|
|
[integrate
|
2021-11-30 18:17:14 +01:00
|
|
|
Black](https://black.readthedocs.io/en/stable/integrations/editors.html)
|
2021-08-20 22:54:08 +02:00
|
|
|
and
|
|
|
|
[isort](https://pycqa.github.io/isort/#installing-isorts-for-your-preferred-text-editor)
|
|
|
|
with your editor.
|
|
|
|
- Don't put a shebang line on a Python file unless it's meaningful to
|
|
|
|
run it as a script. (Some libraries can also be run as scripts, e.g.
|
|
|
|
to run a test suite.)
|
|
|
|
- Scripts should be executed directly (`./script.py`), so that the
|
|
|
|
interpreter is implicitly found from the shebang line, rather than
|
|
|
|
explicitly overridden (`python script.py`).
|
|
|
|
- Put all imports together at the top of the file, absent a compelling
|
|
|
|
reason to do otherwise.
|
|
|
|
- Unpacking sequences doesn't require list brackets:
|
|
|
|
|
|
|
|
```python
|
|
|
|
[x, y] = xs # unnecessary
|
|
|
|
x, y = xs # better
|
|
|
|
```
|
|
|
|
|
|
|
|
- For string formatting, use `x % (y,)` rather than `x % y`, to avoid
|
|
|
|
ambiguity if `y` happens to be a tuple.
|
2016-05-15 18:28:38 +02:00
|
|
|
|
|
|
|
### Tests
|
|
|
|
|
2020-05-19 23:11:53 +02:00
|
|
|
Clear, readable code is important for [tests](../testing/testing.md);
|
|
|
|
familiarize yourself with our testing frameworks so that you can write
|
2021-08-20 21:53:28 +02:00
|
|
|
clean, readable tests. Comments about anything subtle about what is
|
2020-05-19 23:11:53 +02:00
|
|
|
being verified are appreciated.
|
2016-05-15 18:28:38 +02:00
|
|
|
|
|
|
|
### Third party code
|
|
|
|
|
2019-09-30 19:37:56 +02:00
|
|
|
See [our docs on dependencies](../subsystems/dependencies.md) for discussion of
|
2017-10-06 22:27:59 +02:00
|
|
|
rules about integrating third-party projects.
|