mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2025-01-07 07:06:05 +01:00
Only enable no-constant-condition for non-loops
"while (true)" is a useful pattern that eslint doesn't really need to flag as a problem.
This commit is contained in:
parent
60ac1aa1c7
commit
7def71aef7
@ -66,6 +66,6 @@ module.exports = {
|
|||||||
'use-isnan': 'off',
|
'use-isnan': 'off',
|
||||||
'no-self-assign': 'off',
|
'no-self-assign': 'off',
|
||||||
'no-unsafe-negation': 'off',
|
'no-unsafe-negation': 'off',
|
||||||
'no-constant-condition': 'off'
|
'no-constant-condition': ['error', {checkLoops: false}]
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user