Browse Source

lint: add func-call-spacing rule

Alexander Rose 3 years ago
parent
commit
4090498f92
3 changed files with 7 additions and 5 deletions
  1. 4 2
      .eslintrc.json
  2. 1 1
      src/mol-data/generic/_spec/linked-list.spec.ts
  3. 2 2
      src/mol-util/zip/util.ts

+ 4 - 2
.eslintrc.json

@@ -49,7 +49,8 @@
             "destructuring": "all",
             "ignoreReadBeforeAssign": false
         }],
-        "space-before-function-paren": "off"
+        "space-before-function-paren": "off",
+        "func-call-spacing": "off"
     },
     "overrides": [
         {
@@ -105,7 +106,8 @@
                     "anonymous": "always",
                     "named": "never",
                     "asyncArrow": "always"
-                }]
+                }],
+                "@typescript-eslint/func-call-spacing": ["error"]
             }
         }
     ]

+ 1 - 1
src/mol-data/generic/_spec/linked-list.spec.ts

@@ -33,7 +33,7 @@ describe('linked list', () => {
         expect(list.count).toBe(5);
     });
 
-    it ('remove', () => {
+    it('remove', () => {
         const list = create([1, 2, 3, 4]);
         const fst = list.removeFirst();
         expect(fst).toBe(1);

+ 2 - 2
src/mol-util/zip/util.ts

@@ -66,13 +66,13 @@ export const U = (function (){
     */
     makeCodes(U.fltree, 9);
     codes2map(U.fltree, 9, U.flmap);
-    revCodes (U.fltree, 9);
+    revCodes(U.fltree, 9);
 
     pushV(U.fdtree, 32, 5);
     // for(i=0;i<32; i++) U.fdtree.push(0,5);
     makeCodes(U.fdtree, 5);
     codes2map(U.fdtree, 5, U.fdmap);
-    revCodes (U.fdtree, 5);
+    revCodes(U.fdtree, 5);
 
     pushV(U.itree, 19, 0);  pushV(U.ltree, 286, 0);  pushV(U.dtree, 30, 0);  pushV(U.ttree, 320, 0);
     /*