]> git.proxmox.com Git - pve-eslint.git/blobdiff - eslint/docs/rules/symbol-description.md
import 8.4.0 source
[pve-eslint.git] / eslint / docs / rules / symbol-description.md
index 61be8767ed5765a86b7d26a679bf77ca0a236bc0..7743867d29078e7c712d896a8c04fdc7a3d60238 100644 (file)
@@ -9,7 +9,6 @@ var someString = "some description";
 var bar = Symbol(someString);
 ```
 
-
 Using `description` promotes easier debugging: when a symbol is logged the description is used:
 
 ```js
@@ -21,12 +20,10 @@ var foo = Symbol("some description");
 
 It may facilitate identifying symbols when one is observed during debugging.
 
-
 ## Rule Details
 
 This rules requires a description when creating symbols.
 
-
 ## Examples
 
 Examples of **incorrect** code for this rule:
@@ -50,7 +47,6 @@ var someString = "some description";
 var bar = Symbol(someString);
 ```
 
-
 ## When Not To Use It
 
 This rule should not be used in ES3/5 environments.