]> git.proxmox.com Git - pve-eslint.git/blobdiff - eslint/lib/rules/no-loss-of-precision.js
import 8.41.0 source
[pve-eslint.git] / eslint / lib / rules / no-loss-of-precision.js
index 6dc6d864dcdf9931632af7324f55cf8cc79a9f93..22ca7f93e3ad1bd8a0138702e4e1e1d320a6040c 100644 (file)
@@ -17,7 +17,7 @@ module.exports = {
         docs: {
             description: "Disallow literal numbers that lose precision",
             recommended: true,
-            url: "https://eslint.org/docs/rules/no-loss-of-precision"
+            url: "https://eslint.org/docs/latest/rules/no-loss-of-precision"
         },
         schema: [],
         messages: {
@@ -105,7 +105,7 @@ module.exports = {
         }
 
         /**
-         * Converts an integer to to an object containing the integer's coefficient and order of magnitude
+         * Converts an integer to an object containing the integer's coefficient and order of magnitude
          * @param {string} stringInteger the string representation of the integer being converted
          * @returns {Object} the object containing the integer's coefficient and order of magnitude
          */
@@ -120,7 +120,7 @@ module.exports = {
 
         /**
          *
-         * Converts a float to to an object containing the floats's coefficient and order of magnitude
+         * Converts a float to an object containing the floats's coefficient and order of magnitude
          * @param {string} stringFloat the string representation of the float being converted
          * @returns {Object} the object containing the integer's coefficient and order of magnitude
          */