Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

STCLI-250 omit unused arguments when calling okToPull #355

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Conversation

zburke
Copy link
Member

@zburke zburke commented Sep 17, 2024

okToPull() does not take any arguments so don't call it with any. SonarCloud noticed we had code like this:

foo(arg) {
  const x = blah(arg);
  const okToPull = () => { x.method(); }
  okToPull(arg);
}

And got scared.

Refs STCLI-250

`okToPull()` does not take any arguments so don't call it with any.
SonarCloud noticed we had code like this:
```
foo(arg) {
  const x = blah(arg);
  const okToPull = () => { x.method(); }
  okToPull(arg);
}
```
And got scared.

Refs STCLI-250
Copy link

github-actions bot commented Sep 18, 2024

Jest Unit Test Results

0 tests  ±0   0 ✅ ±0   0s ⏱️ ±0s
0 suites ±0   0 💤 ±0 
0 files   ±0   0 ❌ ±0 

Results for commit 91a3c97. ± Comparison against base commit 505e1c5.

♻️ This comment has been updated with latest results.

Copy link

sonarcloud bot commented Sep 18, 2024

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant