]> git.proxmox.com Git - pve-eslint.git/blobdiff - eslint/docs/src/rules/eqeqeq.md
import 8.41.0 source
[pve-eslint.git] / eslint / docs / src / rules / eqeqeq.md
index f89c30359e88f09ff92d7db3cba632e7e72e33c6..3243844f1020431f1cdfac7b35ae20cb4f360508 100644 (file)
@@ -1,6 +1,5 @@
 ---
 title: eqeqeq
-layout: doc
 rule_type: suggestion
 ---
 
@@ -140,7 +139,7 @@ foo == null
 
 ### allow-null
 
-**Deprecated:** Instead of using this option use "always" and pass a "null" option property with value "ignore". This will tell ESLint to always enforce strict equality except when comparing with the `null` literal.
+**Deprecated:** Instead of using this option use `"always"` and pass a `"null"` option property with value `"ignore"`. This will tell ESLint to always enforce strict equality except when comparing with the `null` literal.
 
 ```js
 ["error", "always", {"null": "ignore"}]