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

feat: success message #21

Merged
merged 3 commits into from
Jan 17, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@defi-wonderland/natspec-smells",
"version": "1.0.1",
"version": "1.0.2",
"description": "Automatically identify missing or incomplete natspec",
"homepage": "https://github.com/defi-wonderland/natspec-smells#readme",
"repository": {
Expand Down
16 changes: 10 additions & 6 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,17 @@ import { Validator } from './validator';
const processor = new Processor(validator);
const warnings = await processor.processSources(sourceUnits);

warnings.forEach(({ location, messages }) => {
console.warn(location);
messages.forEach((message) => {
console.warn(` ${message}`);
if (warnings.length) {
warnings.forEach(({ location, messages }) => {
console.warn(location);
messages.forEach((message) => {
console.warn(` ${message}`);
});
console.warn();
});
console.warn();
});
} else {
console.warn('No issues found');
}
0xGorilla marked this conversation as resolved.
Show resolved Hide resolved
})().catch(console.error);

function getArguments(): Config {
Expand Down