blob: be6e158e86f638366ce08542ec96e6c732c58c7e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
=====================
Mozilla ESLint Plugin
=====================
This is the documentation of Mozilla ESLint PLugin.
Environments
============
The plugin implements the following environments:
.. toctree::
:maxdepth: 2
eslint-plugin-mozilla/environment
Rules
=====
The plugin implements the following rules:
.. toctree::
:maxdepth: 1
:glob:
eslint-plugin-mozilla/rules/*
Tests
=====
The tests for eslint-plugin-mozilla are run via `mochajs`_ on top of node. Most
of the tests use the `ESLint Rule Unit Test framework`_.
.. _mochajs: https://mochajs.org/
.. _ESLint Rule Unit Test Framework: http://eslint.org/docs/developer-guide/working-with-rules#rule-unit-tests
Running Tests
-------------
The tests for eslint-plugin-mozilla are run via `mochajs`_ on top of node. Most
of the tests use the `ESLint Rule Unit Test framework`_.
The rules have some self tests, these can be run via:
.. code-block:: shell
$ cd tools/lint/eslint/eslint-plugin-mozilla
$ npm install
$ npm run test
Disabling tests
---------------
In the unlikely event of needing to disable a test, currently the only way is
by commenting-out. Please file a bug if you have to do this. Bugs should be filed
in the *Testing* product under *Lint*.
.. _mochajs: https://mochajs.org/
.. _ESLint Rule Unit Test Framework: http://eslint.org/docs/developer-guide/working-with-rules#rule-unit-tests
|