We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
id-denylist
1 parent c5bee75 commit 3dcc591Copy full SHA for 3dcc591
packages/eslint-config-airbnb-base/rules/style.js
@@ -107,8 +107,13 @@ module.exports = {
107
108
// Blacklist certain identifiers to prevent them being used
109
// https://eslint.org/docs/rules/id-blacklist
110
+ // TODO: semver-major, remove once eslint v7.4+ is required
111
'id-blacklist': 'off',
112
113
+ // disallow specified identifiers
114
+ // https://eslint.org/docs/rules/id-denylist
115
+ 'id-denylist': 'off',
116
+
117
// this option enforces minimum and maximum identifier lengths
118
// (variable names, property names etc.)
119
'id-length': 'off',
0 commit comments