2016-08-19 01:00:06 +02:00
|
|
|
# Linters
|
|
|
|
|
|
|
|
## Overview
|
|
|
|
|
|
|
|
Zulip does extensive linting of much of its source code, including
|
2019-03-28 20:55:05 +01:00
|
|
|
Python/JavaScript/TypeScript files, HTML templates (Django/handlebars), CSS files,
|
2016-08-19 01:00:06 +02:00
|
|
|
JSON fixtures, Markdown documents, puppet manifests, and shell scripts.
|
|
|
|
|
|
|
|
For some files we simply check for small things like trailing whitespace,
|
|
|
|
but for other files, we are quite thorough about checking semantic
|
|
|
|
correctness.
|
|
|
|
|
|
|
|
Obviously, a large reason for linting code is to enforce the [Zulip
|
2019-09-30 19:37:56 +02:00
|
|
|
coding standards](../contributing/code-style.md). But we also use the linters to
|
2016-08-19 01:00:06 +02:00
|
|
|
prevent common coding errors.
|
|
|
|
|
|
|
|
We borrow some open source tools for much of our linting, and the links
|
|
|
|
below will direct you to the official documentation for these projects.
|
|
|
|
|
2020-03-27 01:32:21 +01:00
|
|
|
- [eslint](https://eslint.org)
|
2016-08-19 01:00:06 +02:00
|
|
|
- [mypy](http://mypy-lang.org/)
|
2020-07-22 21:25:49 +02:00
|
|
|
- [Prettier](https://prettier.io/)
|
2016-12-03 01:46:10 +01:00
|
|
|
- [puppet](https://puppet.com/) (puppet provides its own mechanism for
|
|
|
|
validating manifests)
|
2016-08-19 01:00:06 +02:00
|
|
|
- [pyflakes](https://pypi.python.org/pypi/pyflakes)
|
2018-07-25 14:07:24 +02:00
|
|
|
- [stylelint](https://github.com/stylelint/stylelint)
|
2016-08-19 01:00:06 +02:00
|
|
|
|
|
|
|
Zulip also uses some home-grown code to perform tasks like validating
|
|
|
|
indentation in template files, enforcing coding standards that are unique
|
|
|
|
to Zulip, allowing certain errors from third party linters to pass through,
|
|
|
|
and exempting legacy files from lint checks.
|
|
|
|
|
|
|
|
## Running the linters
|
|
|
|
|
2018-11-29 23:09:03 +01:00
|
|
|
If you run `./tools/test-all`, it will automatically run the linters.
|
|
|
|
You can also run them individually or pass specific files:
|
2016-08-19 01:00:06 +02:00
|
|
|
|
2017-04-21 23:07:06 +02:00
|
|
|
./tools/lint
|
2018-11-29 23:09:03 +01:00
|
|
|
./tools/lint static/js/compose.js
|
|
|
|
./tools/lint static/js/
|
2019-06-24 23:24:31 +02:00
|
|
|
|
|
|
|
`./tools/lint` has many useful options; you can read about them in its
|
|
|
|
internal documentation using `./tools/lint --help`. Of particular
|
|
|
|
note are:
|
|
|
|
* `--fix`: Several of our linters support automatically fixing basic
|
|
|
|
issues; this option will ask `tools/lint` to run those.
|
|
|
|
* `--verbose`: Provides detailed information on how to fix many common
|
|
|
|
linter errors not covered by `--fix`.
|
|
|
|
* `--skip` and `--only`: Only run certain linters.
|
|
|
|
* `-m`: Only check modified files.
|
2016-08-19 01:00:06 +02:00
|
|
|
|
2020-04-28 20:26:58 +02:00
|
|
|
Finally, you can rely on our CircleCI setup to run linters for you,
|
|
|
|
but it is good practice to run lint checks locally.
|
2016-08-19 01:00:06 +02:00
|
|
|
|
2019-11-26 00:25:49 +01:00
|
|
|
```eval_rst
|
|
|
|
.. important::
|
|
|
|
We provide a
|
|
|
|
`Git pre-commit hook <../git/zulip-tools.html#set-up-git-repo-script>`_
|
|
|
|
that can automatically run ``tools/lint`` on just the files that
|
|
|
|
changed (in a few 100ms) whenever you make a commit. This can save
|
|
|
|
you a lot of time, by automatically detecting linter errors as you
|
|
|
|
make them.
|
|
|
|
```
|
2018-11-29 23:09:03 +01:00
|
|
|
|
2017-01-25 03:12:05 +01:00
|
|
|
**Note:** The linters only check files that git tracks. Remember to `git add`
|
|
|
|
new files before running lint checks.
|
|
|
|
|
2016-08-19 01:00:06 +02:00
|
|
|
Our linting tools generally support the ability to lint files
|
|
|
|
individually--with some caveats--and those options will be described
|
|
|
|
later in this document.
|
|
|
|
|
|
|
|
## General considerations
|
|
|
|
|
2019-09-30 19:37:56 +02:00
|
|
|
Once you have read the [Zulip coding guidelines](../contributing/code-style.md), you can
|
2016-08-19 01:00:06 +02:00
|
|
|
be pretty confident that 99% of the code that you write will pass through
|
|
|
|
the linters fine, as long as you are thorough about keeping your code clean.
|
2017-04-21 23:07:06 +02:00
|
|
|
And, of course, for minor oversights, `lint` is your friend, not your foe.
|
2016-08-19 01:00:06 +02:00
|
|
|
|
|
|
|
Occasionally, our linters will complain about things that are more of
|
|
|
|
an artifact of the linter limitations than any actual problem with your
|
|
|
|
code. There is usually a mechanism where you can bypass the linter in
|
|
|
|
extreme cases, but often it can be a simple matter of writing your code
|
|
|
|
in a slightly different style to appease the linter. If you have
|
|
|
|
problems getting something to lint, you can submit an unfinished PR
|
|
|
|
and ask the reviewer to help you work through the lint problem, or you
|
2019-09-30 19:37:56 +02:00
|
|
|
can find other people in the [Zulip Community](../contributing/chat-zulip-org.md)
|
2016-08-19 01:00:06 +02:00
|
|
|
to help you.
|
|
|
|
|
|
|
|
Also, bear in mind that 100% of the lint code is open source, so if you
|
|
|
|
find limitations in either the Zulip home-grown stuff or our third party
|
|
|
|
tools, feedback will be highly appreciated.
|
|
|
|
|
|
|
|
Finally, one way to clean up your code is to thoroughly exercise it
|
2019-09-30 19:37:56 +02:00
|
|
|
with tests. The [Zulip test documentation](../testing/testing.md)
|
2016-08-19 01:00:06 +02:00
|
|
|
describes our test system in detail.
|
|
|
|
|
|
|
|
## Lint checks
|
|
|
|
|
2017-04-21 23:07:06 +02:00
|
|
|
Most of our lint checks get performed by `./tools/lint`. These include the
|
2016-08-19 01:00:06 +02:00
|
|
|
following checks:
|
|
|
|
|
|
|
|
- Check Python code with pyflakes.
|
2019-03-28 20:55:05 +01:00
|
|
|
- Check JavaScript and TypeScript code with eslint.
|
2020-08-04 23:58:56 +02:00
|
|
|
- Check CSS, JavaScript, TypeScript, and YAML formatting with Prettier.
|
2016-08-19 01:00:06 +02:00
|
|
|
- Check Python code for custom Zulip rules.
|
|
|
|
- Check non-Python code for custom Zulip rules.
|
|
|
|
- Check puppet manifests with the puppet validator.
|
|
|
|
- Check HTML templates for matching tags and indentations.
|
2018-07-25 14:07:24 +02:00
|
|
|
- Check CSS for parsability and formatting.
|
2016-08-19 01:00:06 +02:00
|
|
|
- Check JavaScript code for addClass calls.
|
2018-12-17 05:58:06 +01:00
|
|
|
- Running `mypy` to check static types in Python code. Our
|
2019-09-30 19:37:56 +02:00
|
|
|
[documentation on using mypy](../testing/mypy.md) covers mypy in
|
2018-12-17 05:58:06 +01:00
|
|
|
more detail.
|
2019-07-20 20:40:36 +02:00
|
|
|
- Running `tsc` to compile TypeScript code. Our [documentation on
|
2019-09-30 19:37:56 +02:00
|
|
|
TypeScript](typescript.md) covers TypeScript in more detail.
|
2016-08-19 01:00:06 +02:00
|
|
|
|
2017-04-21 23:07:06 +02:00
|
|
|
The rest of this document pertains to the checks that occur in `./tools/lint`.
|
2016-08-19 01:00:06 +02:00
|
|
|
|
2017-04-21 23:07:06 +02:00
|
|
|
## lint
|
2016-08-19 01:00:06 +02:00
|
|
|
|
2017-04-21 23:07:06 +02:00
|
|
|
Zulip has a script called `lint` that lives in our "tools" directory.
|
2016-08-19 01:00:06 +02:00
|
|
|
It is the workhorse of our linting system, although in some cases it
|
|
|
|
dispatches the heavy lifting to other components such as pyflakes,
|
2016-12-03 01:46:10 +01:00
|
|
|
eslint, and other home grown tools.
|
2016-08-19 01:00:06 +02:00
|
|
|
|
2017-04-21 23:07:06 +02:00
|
|
|
You can find the source code [here](https://github.com/zulip/zulip/blob/master/tools/lint).
|
2016-08-19 01:00:06 +02:00
|
|
|
|
2017-04-21 23:07:06 +02:00
|
|
|
In order for our entire lint suite to run in a timely fashion, the `lint`
|
2019-07-28 01:23:13 +02:00
|
|
|
script performs several lint checks in parallel by forking out subprocesses.
|
2016-08-19 01:00:06 +02:00
|
|
|
|
2017-06-05 17:02:58 +02:00
|
|
|
Note that our project does custom regex-based checks on the code, and we
|
|
|
|
also customize how we call pyflakes and pycodestyle (pep8). The code for these
|
|
|
|
types of checks mostly lives [here](https://github.com/zulip/zulip/blob/master/tools/linter_lib).
|
|
|
|
|
2016-08-19 01:00:06 +02:00
|
|
|
### Special options
|
|
|
|
|
2017-04-21 23:07:06 +02:00
|
|
|
You can use the `-h` option for `lint` to see its usage. One particular
|
2016-08-19 01:00:06 +02:00
|
|
|
flag to take note of is the `--modified` flag, which enables you to only run
|
|
|
|
lint checks against files that are modified in your git repo. Most of the
|
|
|
|
"sub-linters" respect this flag, but some will continue to process all the files.
|
|
|
|
Generally, a good workflow is to run with `--modified` when you are iterating on
|
2017-11-09 16:26:38 +01:00
|
|
|
the code, and then run without that option right before committing new code.
|
2016-08-19 01:00:06 +02:00
|
|
|
|
2019-06-18 15:27:10 +02:00
|
|
|
If you need to troubleshoot the linters, there is a `--verbose-timing`
|
|
|
|
option that can give you clues about which linters may be running
|
|
|
|
slow, for example.
|
2016-08-19 01:00:06 +02:00
|
|
|
|
|
|
|
### Lint checks
|
|
|
|
|
|
|
|
The next part of this document describes the lint checks that we apply to
|
|
|
|
various file types.
|
|
|
|
|
|
|
|
#### Generic source code checks
|
|
|
|
|
|
|
|
We check almost our entire codebase for trailing whitespace. Also, we
|
|
|
|
disallow tab (\t) characters in all but two files.
|
|
|
|
|
|
|
|
We also have custom regex-based checks that apply to specific file types.
|
|
|
|
For relatively minor files like Markdown files and JSON fixtures, this
|
|
|
|
is the extent of our checking.
|
|
|
|
|
2016-08-19 21:08:22 +02:00
|
|
|
Finally, we're checking line length in Python code (and hope to extend
|
|
|
|
this to other parts of the codebase soon). You can use
|
|
|
|
`#ignorelinelength` for special cases where a very long line makes
|
|
|
|
sense (e.g. a link in a comment to an extremely long URL).
|
|
|
|
|
2016-08-19 01:00:06 +02:00
|
|
|
#### Python code
|
|
|
|
|
|
|
|
The bulk of our Python linting gets outsourced to the "pyflakes" tool. We
|
|
|
|
call "pyflakes" in a fairly vanilla fashion, and then we post-process its
|
|
|
|
output to exclude certain types of errors that Zulip is comfortable
|
|
|
|
ignoring. (One notable class of error that Zulip currently tolerates is
|
|
|
|
unused imports--because of the way mypy type annotations work in Python 2,
|
|
|
|
it would be inconvenient to enforce this too strictly.)
|
|
|
|
|
|
|
|
Zulip also has custom regex-based rules that it applies to Python code.
|
2017-04-21 23:07:06 +02:00
|
|
|
Look for `python_rules` in the source code for `lint`. Note that we
|
2017-01-15 05:13:22 +01:00
|
|
|
provide a mechanism to exclude certain lines of codes from these checks.
|
2016-08-19 01:00:06 +02:00
|
|
|
Often, it is simply the case that our regex approach is too crude to
|
|
|
|
correctly exonerate certain valid constructs. In other cases, the code
|
|
|
|
that we exempt may be deemed not worthwhile to fix.
|
|
|
|
|
|
|
|
#### JavaScript code
|
|
|
|
|
|
|
|
We check our JavaScript code in a few different ways:
|
2016-12-03 01:46:10 +01:00
|
|
|
- We run eslint.
|
2020-07-22 21:25:49 +02:00
|
|
|
- We check code formatting with Prettier.
|
2016-08-19 01:00:06 +02:00
|
|
|
- We perform custom Zulip regex checks on the code.
|
|
|
|
|
|
|
|
#### Puppet manifests
|
|
|
|
|
|
|
|
We use Puppet as our tool to manage configuration files, using
|
|
|
|
puppet "manifests." To lint puppet manifests, we use the "parser validate"
|
|
|
|
option of puppet.
|
|
|
|
|
2020-08-11 01:47:54 +02:00
|
|
|
#### HTML templates
|
2016-08-19 01:00:06 +02:00
|
|
|
|
|
|
|
Zulip uses two HTML templating systems:
|
|
|
|
|
|
|
|
- [Django templates](https://docs.djangoproject.com/en/1.10/topics/templates/)
|
2020-03-21 18:17:19 +01:00
|
|
|
- [handlebars](https://handlebarsjs.com/)
|
2016-08-19 01:00:06 +02:00
|
|
|
|
2017-01-15 05:13:22 +01:00
|
|
|
Zulip has an internal tool that validates both types of templates for
|
2016-08-19 01:00:06 +02:00
|
|
|
correct indentation and matching tags. You can find the code here:
|
|
|
|
|
|
|
|
- driver: [check-templates](https://github.com/zulip/zulip/blob/master/tools/check-templates)
|
|
|
|
- engine: [lib/template_parser.py](https://github.com/zulip/zulip/blob/master/tools/lib/template_parser.py)
|
|
|
|
|
|
|
|
We exempt some legacy files from indentation checks, but we are hoping to
|
|
|
|
clean those files up eventually.
|
|
|
|
|
|
|
|
#### CSS
|
|
|
|
|
2018-07-25 14:07:24 +02:00
|
|
|
Zulip uses [stylelint](https://github.com/stylelint/stylelint) to lint
|
|
|
|
its CSS; see our
|
2020-08-04 23:37:35 +02:00
|
|
|
[configuration](https://github.com/zulip/zulip/blob/master/stylelint.config.js)
|
2018-07-25 14:07:24 +02:00
|
|
|
for the rules we currently enforce.
|
2016-08-19 01:00:06 +02:00
|
|
|
|
2018-08-03 02:09:42 +02:00
|
|
|
#### Shell scripts
|
|
|
|
|
|
|
|
Zulip uses [shellcheck](https://github.com/koalaman/shellcheck) to
|
|
|
|
lint our shell scripts. We recommend the
|
|
|
|
[shellcheck gallery of bad code][shellcheck-bad-code] as a resource on
|
|
|
|
how to not write bad shell.
|
|
|
|
|
|
|
|
[shellcheck-bad-code]: https://github.com/koalaman/shellcheck/blob/master/README.md#user-content-gallery-of-bad-code
|
|
|
|
|
2016-08-19 01:00:06 +02:00
|
|
|
#### Markdown, shell scripts, JSON fixtures
|
|
|
|
|
2018-08-03 02:09:42 +02:00
|
|
|
We mostly validate miscellaneous source files like `.json`, and `.md`
|
|
|
|
files for whitespace issues.
|
2016-08-19 01:00:06 +02:00
|
|
|
|
|
|
|
## Philosophy
|
|
|
|
|
|
|
|
If you want to help improve Zulip's system for linting, here are some
|
|
|
|
considerations.
|
|
|
|
|
|
|
|
#### Speed
|
|
|
|
|
|
|
|
We want our linters to be fast enough that most developers
|
|
|
|
will feel comfortable running them in a pre-commit hook, so we run
|
|
|
|
our linters in parallel and support incremental checks.
|
|
|
|
|
|
|
|
#### Accuracy
|
|
|
|
|
|
|
|
We try to catch as many common mistakes as possible, either via a
|
|
|
|
linter or an automated test.
|
|
|
|
|
|
|
|
#### Completeness
|
|
|
|
|
|
|
|
Our goal is to have most common style issues by caught by the linters, so new
|
|
|
|
contributors to the codebase can efficiently fix produce code with correct
|
|
|
|
style without needing to go back-and-forth with a reviewer.
|