chore(lint) tame the (uppdated) linter

This commit is contained in:
Saúl Ibarra Corretgé
2021-11-04 22:10:43 +01:00
committed by Saúl Ibarra Corretgé
parent 0aba61d5c6
commit 162a67fe8b
385 changed files with 933 additions and 900 deletions

View File

@@ -58,10 +58,10 @@ class ProfileButton extends AbstractButton<Props, *> {
/**
* Required by linter due to AbstractButton overwritten prop being writable.
*
* @param {string} value - The value.
* @param {string} _value - The value.
*/
set label(value) {
return value;
set label(_value) {
// Unused.
}
/**
@@ -74,10 +74,10 @@ class ProfileButton extends AbstractButton<Props, *> {
/**
* Required by linter due to AbstractButton overwritten prop being writable.
*
* @param {string} value - The value.
* @param {string} _value - The value.
*/
set tooltip(value) {
return value;
set tooltip(_value) {
// Unused.
}
/**