File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 290
290
"default-case-last" : {
291
291
"type" : " suggestion" ,
292
292
"docs" : {
293
- "description" : " Enforce default clauses in switch statements to be last" ,
293
+ "description" : " Enforce ` default` clauses in switch statements to be last" ,
294
294
"recommended" : false ,
295
295
"url" : " https://eslint.org/docs/latest/rules/default-case-last"
296
296
}
Original file line number Diff line number Diff line change 1
1
/**
2
- * @fileoverview Rule to enforce default clauses in switch statements to be last
2
+ * @fileoverview Rule to enforce ` default` clauses in switch statements to be last
3
3
* @author Milos Djermanovic
4
4
*/
5
5
@@ -15,7 +15,7 @@ module.exports = {
15
15
type : "suggestion" ,
16
16
17
17
docs : {
18
- description : "Enforce default clauses in switch statements to be last" ,
18
+ description : "Enforce ` default` clauses in switch statements to be last" ,
19
19
recommended : false ,
20
20
url : "https://eslint.org/docs/latest/rules/default-case-last"
21
21
} ,
You can’t perform that action at this time.
0 commit comments