]> source.dussan.org Git - rspamd.git/commitdiff
[Minor] JS: Disable "no-bitwise" rule for specific lines
authorAlexander Moisseev <moiseev@mezonplus.ru>
Thu, 5 Jul 2018 06:52:23 +0000 (09:52 +0300)
committerAlexander Moisseev <moiseev@mezonplus.ru>
Thu, 5 Jul 2018 06:52:23 +0000 (09:52 +0300)
interface/js/app/graph.js
interface/js/app/stats.js

index 036a1ac248b50a6e2bc659f454dfe97789350952..38c993059906d1cc6cfac398f7a02e58d9181d36 100644 (file)
@@ -124,7 +124,7 @@ define(["jquery", "d3evolution", "footable"],
 
                 return {
                     label: graph_options.legend.entries[i].label,
-                    value: value ^ 0,
+                    value: value ^ 0, // eslint-disable-line no-bitwise
                     min: +yExtents[0].toFixed(6),
                     avg: +avg.toFixed(6),
                     max: +yExtents[1].toFixed(6),
index a85f91425f7c8437c02a86e0ba9587881317c577..f3f8930e260c4595d84a84b2a3f65f98f146564a 100644 (file)
@@ -26,11 +26,13 @@ define(["jquery", "d3pie", "humanize"],
     function($, d3pie, Humanize) {
     // @ ms to date
         function msToTime(seconds) {
+            /* eslint-disable no-bitwise */
             years = seconds / 31536000 >> 0; // 3600*24*365
             months = seconds % 31536000 / 2628000 >> 0; // 3600*24*365/12
             days = seconds % 31536000 % 2628000 / 86400 >> 0; // 24*3600
             hours = seconds % 31536000 % 2628000 % 86400 / 3600 >> 0;
             minutes = seconds % 31536000 % 2628000 % 86400 % 3600 / 60 >> 0;
+            /* eslint-enable no-bitwise */
             if (years > 0) {
                 if (months > 0) {
                     out = years + "yr " + months + "mth";