1
0
forked from 0ad/0ad

Linting: allow constant condition in loops

Reviewed by: Itms
Differential Revision: https://code.wildfiregames.com/D1364
This was SVN commit r22101.
This commit is contained in:
Imarok 2019-03-03 10:48:18 +00:00
parent 2dfa48fe1b
commit f9da484077

View File

@ -7,7 +7,7 @@
],
"rules": {
"no-cond-assign": 1,
"no-constant-condition": 1,
"no-constant-condition": ["error", { "checkLoops": false }],
"no-dupe-args": 1,
"no-dupe-keys": 1,
"no-duplicate-case": 1,