@@ -74,7 +74,7 @@ Instead, in Javascript, prefixing a parameter with an underscore will stop
74
74
most IDEs from highlighting that parameter if it's unused, which is actually a
75
75
tool you probably want to keep in this case. Remove the underscore \`_\` from
76
76
${ 'parameter.name' } in order to fix this.
77
- ` ( 'javascript.generic .prefer_unprefixed_underscore_parameters' )
77
+ ` ( 'javascript.general .prefer_unprefixed_underscore_parameters' )
78
78
79
79
export const PARSE_ERROR = factory < 'error' | 'details' > `
80
80
There is something wrong with your submission, most likely a Syntax Error:
@@ -84,14 +84,14 @@ Message: "${'error'}"
84
84
\`\`\`
85
85
${ 'details' }
86
86
\`\`\`
87
- ` ( 'javascript.generic .parse_error' )
87
+ ` ( 'javascript.general .parse_error' )
88
88
89
89
export const PREFER_CONST_OVER_LET_AND_VAR = factory < 'kind' | 'name' > `
90
90
Instead of \`${ 'kind' } ${ 'name' } \`, consider using \`const\`.
91
91
92
92
\`const\` is a signal that the identifier won't be reassigned, which SHOULD be
93
93
true for this top-level constant. (Not to be confused with _immutable values_).
94
- ` ( 'javascript.generic .prefer_const_over_let_and_var' )
94
+ ` ( 'javascript.general .prefer_const_over_let_and_var' )
95
95
96
96
export const BETA_COMMENTARY_PREFIX = factory `
97
97
🧪 This solution's output contains a new format of comments that is currently
@@ -107,8 +107,8 @@ please open an issue [here](https://github.com/exercism/javascript-analyzer/issu
107
107
this to the student directly. Use it to determine what you want to say.
108
108
- If there is no icon, the commentary has not been updated to the latest
109
109
standard. Proceed with caution.
110
- ` ( 'javascript.generic .beta_disapprove_commentary_prefix' )
110
+ ` ( 'javascript.general .beta_disapprove_commentary_prefix' )
111
111
112
112
export const ERROR_CAPTURED_NO_SOURCE = factory < 'expected' | 'available' > `
113
113
Expected source file "${ 'expected' } ", found: ${ 'available' } .
114
- ` ( 'javascript.generic .error_captured_no_source' )
114
+ ` ( 'javascript.general .error_captured_no_source' )
0 commit comments