]> git.proxmox.com Git - pve-eslint.git/blobdiff - eslint/lib/rules/no-unreachable.js
import 8.23.1 source
[pve-eslint.git] / eslint / lib / rules / no-unreachable.js
index ce17a5966a7eccae48cb3ac0976fadebf3c20936..dea86815aac5b98180b4f95dc76a6d5732f9658f 100644 (file)
@@ -105,12 +105,13 @@ class ConsecutiveRange {
 // Rule Definition
 //------------------------------------------------------------------------------
 
+/** @type {import('../shared/types').Rule} */
 module.exports = {
     meta: {
         type: "problem",
 
         docs: {
-            description: "disallow unreachable code after `return`, `throw`, `continue`, and `break` statements",
+            description: "Disallow unreachable code after `return`, `throw`, `continue`, and `break` statements",
             recommended: true,
             url: "https://eslint.org/docs/rules/no-unreachable"
         },