forked from ChromeDevTools/devtools-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathno-assert-deep-strict-equal.js
61 lines (55 loc) · 1.89 KB
/
no-assert-deep-strict-equal.js
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
61
// Copyright 2024 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
'use strict';
/**
* @fileoverview Disallow usage of `assert.deepStrictEqual`.
*
* In chai, `deepStrictEqual` is an alias for `deepEqual`, and we want to
* consistently use the latter to not leave developers wondering what's
* the difference between these two. Also the `strict` part in the name might
* lead to the wrong conclusion that this is about strict equality.
*/
// ------------------------------------------------------------------------------
// Rule Definition
// ------------------------------------------------------------------------------
/** @type {import('eslint').Rule.RuleModule} */
module.exports = {
meta: {
type: 'suggestion',
docs: {
description: 'Disallow usage of `assert.deepStrictEqual` in favor of `assert.deepEqual`.',
category: 'Best Practices',
},
messages: {
unexpectedAssertDeepStrictEqual: 'Unexpected assert.deepStrictEqual. Use assert.deepEqual instead.',
},
fixable: 'code',
schema: [], // no options
},
create: function (context) {
function isAssertDeepStrictEqual(calleeNode) {
return calleeNode.type === 'MemberExpression' &&
calleeNode.object.type === 'Identifier' &&
calleeNode.object.name === 'assert' &&
calleeNode.property.type === 'Identifier' &&
calleeNode.property.name === 'deepStrictEqual';
}
function reportError(node) {
context.report({
node,
messageId: 'unexpectedAssertDeepStrictEqual',
fix(fixer) {
return fixer.replaceText(node.callee.property, 'deepEqual');
}
});
}
return {
CallExpression(node) {
if (isAssertDeepStrictEqual(node.callee)) {
reportError(node);
}
}
};
},
};