forked from ChromeDevTools/devtools-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprefer-private-class-members.js
49 lines (43 loc) · 1.31 KB
/
prefer-private-class-members.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
// Copyright 2021 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.
/**
* @fileoverview Prefer private properties over regular class properties with
* `private` modifier.
*/
'use strict';
// ------------------------------------------------------------------------------
// Rule Definition
// ------------------------------------------------------------------------------
/**
* @type {import('eslint').Rule.RuleModule}
*/
module.exports = {
meta: {
type: 'problem',
docs: {
description: 'Prefer private properties over regular properties with `private` modifier',
category: 'Possible Errors',
},
schema: [], // no options
messages: {do_not_use_private: 'Use private properties (starting with `#`) rather than the `private` modifier.'},
},
create: function(context) {
function isTypeScriptPrivate(node){
if (node.accessibility === 'private' && node.kind !== 'constructor') {
context.report({
node: node.key,
messageId: 'do_not_use_private',
});
}
}
return {
MethodDefinition(node){
isTypeScriptPrivate(node);
},
PropertyDefinition(node){
isTypeScriptPrivate(node);
}
};
}
};