邓心一 7 年之前
父节点
当前提交
16ba836eed
共有 2 个文件被更改,包括 3 次插入3 次删除
  1. 1 1
      .eslintrc.json
  2. 2 2
      easy/190.js

+ 1 - 1
.eslintrc.json

@@ -11,7 +11,7 @@
         ],
         ],
         "linebreak-style": [
         "linebreak-style": [
             "error",
             "error",
-            "unix"
+            "windows"
         ],
         ],
         "quotes": [
         "quotes": [
             "error",
             "error",

+ 2 - 2
easy/190.js

@@ -27,7 +27,7 @@ var reverseBits = function (n) {
 }
 }
 
 
 function __main__() {
 function __main__() {
-    /*eslint no-console: ["error", { allow: ["log"] }] */    
+    /*eslint no-console: ["error", { allow: ["log"] }] */
     console.log(reverseBits(4294967295))
     console.log(reverseBits(4294967295))
     console.log(reverseBits(43261596))
     console.log(reverseBits(43261596))
     console.log(reverseBits(1))
     console.log(reverseBits(1))
@@ -36,4 +36,4 @@ function __main__() {
     console.log(reverseBitsOld(1))
     console.log(reverseBitsOld(1))
 }
 }
 
 
-__main__()
+__main__()