-
Notifications
You must be signed in to change notification settings - Fork 1.7k
fmtscan
reports unique bad spellings but does not specify where
#265
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
Comments
Better specify when you commit by providing messages generated by |
I got the report. There is an output message.
Search through the + double number_traces_max_t = tmp->n[0] + tmp->n[1];
double max_tau = max_t / sqrt(number_traces_max_t);
printf("\033[A\033[2K");
- printf("measure: %7.2lf M, ", (number_traces_max_t / 1e6));
+ printf("meas: %7.2lf M, ", (number_traces_max_t / 1e6));
if (number_traces_max_t < ENOUGH_MEASURE) {
printf("not enough measurements (%.0f still to go).\n",
ENOUGH_MEASURE - number_traces_max_t);
So I suggest you share your search and see if the output message really works. |
During web integration for the assignment, fmtscan flagged three front-end terms - 'href', 'monospace', and 'rel' - as spelling errors. This echoes a similar issue noted in sysprog21#265. Add these valid technical terms to the dictionary to prevent false positives, ensuring accurate code validation. This resolves the false flagging noted in sysprog21#265 but does not address its call for enhanced error reporting in fmtscan. Change-Id: I9012db1c963e20f9cd275e7e15fe45a1c93d0a5f
While working on web integration for the assignment, fmtscan marked 'href' and 'rel' from HTML, and 'monospace' from CSS, as spelling errors - a problem also seen in sysprog21#265. Add these valid terms to the dictionary to avoid false positives and ensure reliable static analysis. This fixes the flagging issue from sysprog21#265 but leaves its request for better error details in fmtscan unaddressed. Change-Id: Ia59908e7ce9bdf4b6c9e0110d5ad061d401cbba1
When committing ,
fmtscan
reports "3 unique bad spellings found (3 non-unique)" but does not indicate which words are misspelled or their locations in the source code.It would be helpful if fmtscan can automatically displayed more details about spelling errors.
The text was updated successfully, but these errors were encountered: