]> git.proxmox.com Git - pve-eslint.git/blame - eslint/docs/rules/no-unused-expressions.md
import eslint 7.28.0
[pve-eslint.git] / eslint / docs / rules / no-unused-expressions.md
CommitLineData
eb39fafa
DC
1# Disallow Unused Expressions (no-unused-expressions)
2
3An unused expression which has no effect on the state of the program indicates a logic error.
4
5For example, `n + 1;` is not a syntax error, but it might be a typing mistake where a programmer meant an assignment statement `n += 1;` instead. Sometimes, such unused expressions may be eliminated by some build tools in production environment, which possibly breaks application logic.
6
7## Rule Details
8
9This rule aims to eliminate unused expressions which have no effect on the state of the program.
10
11This rule does not apply to function calls or constructor calls with the `new` operator, because they could have *side effects* on the state of the program.
12
13```js
14var i = 0;
15function increment() { i += 1; }
16increment(); // return value is unused, but i changed as a side effect
17
18var nThings = 0;
19function Thing() { nThings += 1; }
20new Thing(); // constructed object is unused, but nThings changed as a side effect
21```
22
23This rule does not apply to directives (which are in the form of literal string expressions such as `"use strict";` at the beginning of a script, module, or function).
24
25Sequence expressions (those using a comma, such as `a = 1, b = 2`) are always considered unused unless their return value is assigned or used in a condition evaluation, or a function call is made with the sequence expression value.
26
27## Options
28
29This rule, in its default state, does not require any arguments. If you would like to enable one or more of the following you may pass an object with the options set as follows:
30
31* `allowShortCircuit` set to `true` will allow you to use short circuit evaluations in your expressions (Default: `false`).
32* `allowTernary` set to `true` will enable you to use ternary operators in your expressions similarly to short circuit evaluations (Default: `false`).
33* `allowTaggedTemplates` set to `true` will enable you to use tagged template literals in your expressions (Default: `false`).
5422a9cc 34* `enforceForJSX` set to `true` will flag unused JSX element expressions (Default: `false`).
eb39fafa
DC
35
36These options allow unused expressions *only if all* of the code paths either directly change the state (for example, assignment statement) or could have *side effects* (for example, function call).
37
38Examples of **incorrect** code for the default `{ "allowShortCircuit": false, "allowTernary": false }` options:
39
40```js
41/*eslint no-unused-expressions: "error"*/
42
430
44
45if(0) 0
46
47{0}
48
49f(0), {}
50
51a && b()
52
53a, b()
54
55c = a, b;
56
57a() && function namedFunctionInExpressionContext () {f();}
58
59(function anIncompleteIIFE () {});
60
61injectGlobal`body{ color: red; }`
62
63```
64
65Note that one or more string expression statements (with or without semi-colons) will only be considered as unused if they are not in the beginning of a script, module, or function (alone and uninterrupted by other statements). Otherwise, they will be treated as part of a "directive prologue", a section potentially usable by JavaScript engines. This includes "strict mode" directives.
66
67```js
68"use strict";
69"use asm"
70"use stricter";
71"use babel"
72"any other strings like this in the prologue";
73```
74
75Examples of **correct** code for the default `{ "allowShortCircuit": false, "allowTernary": false }` options:
76
77```js
78/*eslint no-unused-expressions: "error"*/
79
80{} // In this context, this is a block statement, not an object literal
81
82{myLabel: someVar} // In this context, this is a block statement with a label and expression, not an object literal
83
84function namedFunctionDeclaration () {}
85
86(function aGenuineIIFE () {}());
87
88f()
89
90a = 0
91
92new C
93
94delete a.b
95
96void a
97```
98
99### allowShortCircuit
100
101Examples of **incorrect** code for the `{ "allowShortCircuit": true }` option:
102
103```js
104/*eslint no-unused-expressions: ["error", { "allowShortCircuit": true }]*/
105
106a || b
107```
108
109Examples of **correct** code for the `{ "allowShortCircuit": true }` option:
110
111```js
112/*eslint no-unused-expressions: ["error", { "allowShortCircuit": true }]*/
113
114a && b()
115a() || (b = c)
116```
117
118### allowTernary
119
120Examples of **incorrect** code for the `{ "allowTernary": true }` option:
121
122```js
123/*eslint no-unused-expressions: ["error", { "allowTernary": true }]*/
124
125a ? b : 0
126a ? b : c()
127```
128
129Examples of **correct** code for the `{ "allowTernary": true }` option:
130
131```js
132/*eslint no-unused-expressions: ["error", { "allowTernary": true }]*/
133
134a ? b() : c()
135a ? (b = c) : d()
136```
137
138### allowShortCircuit and allowTernary
139
140Examples of **correct** code for the `{ "allowShortCircuit": true, "allowTernary": true }` options:
141
142```js
143/*eslint no-unused-expressions: ["error", { "allowShortCircuit": true, "allowTernary": true }]*/
144
145a ? b() || (c = d) : e()
146```
147
148### allowTaggedTemplates
149
150Examples of **incorrect** code for the `{ "allowTaggedTemplates": true }` option:
151
152```js
153/*eslint no-unused-expressions: ["error", { "allowTaggedTemplates": true }]*/
154
155`some untagged template string`;
156```
157
158Examples of **correct** code for the `{ "allowTaggedTemplates": true }` option:
159
160```js
161/*eslint no-unused-expressions: ["error", { "allowTaggedTemplates": true }]*/
162
163tag`some tagged template string`;
164```
5422a9cc
TL
165
166### enforceForJSX
167
168JSX is most-commonly used in the React ecosystem, where it is compiled to `React.createElement` expressions. Though free from side-effects, these calls are not automatically flagged by the `no-unused-expression` rule. If you're using React, or any other side-effect-free JSX pragma, this option can be enabled to flag these expressions.
169
170Examples of **incorrect** code for the `{ "enforceForJSX": true }` option:
171
172```jsx
173/*eslint no-unused-expressions: ["error", { "enforceForJSX": true }]*/
174
175<MyComponent />;
176
177<></>;
178```
179
180Examples of **correct** code for the `{ "enforceForJSX": true }` option:
181
182```jsx
183/*eslint no-unused-expressions: ["error", { "enforceForJSX": true }]*/
184
185var myComponentPartial = <MyComponent />;
186
187var myFragment = <></>;
188```