Skip to content

Commit

Permalink
fix: remove console.log statement & update eslint config (Resolves #420)
Browse files Browse the repository at this point in the history
  • Loading branch information
techfg committed Apr 30, 2024
1 parent ab01e2d commit bd21861
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@
"one-var": ["error", { "var": "consecutive" }],
"strict": ["error", "function"],
"no-nested-ternary": 0,
"camelcase": 0
"camelcase": 0,
"no-console": ["error", { "allow": ["warn", "error"] }]
},
"settings": {
"html/indent": "+2",
Expand Down
1 change: 0 additions & 1 deletion src/core.js
Original file line number Diff line number Diff line change
Expand Up @@ -1106,6 +1106,5 @@
};
return me;
})();
console.log('foo3456');
$.mapster.impl.init();
})(jQuery);

0 comments on commit bd21861

Please sign in to comment.