mirror of
https://github.com/captbaritone/webamp.git
synced 2026-08-03 23:43:28 +00:00
Don't complain about private methods
This commit is contained in:
parent
b67ebc2ca2
commit
b52879475f
1 changed files with 4 additions and 0 deletions
|
|
@ -96,6 +96,10 @@ module.exports = {
|
|||
return;
|
||||
}
|
||||
|
||||
if (methodName.startsWith("_")) {
|
||||
return;
|
||||
}
|
||||
|
||||
const func = methods[methodName];
|
||||
if (func == null) {
|
||||
context.report({
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue