Skip to content

Commit

Permalink
Prettify the code
Browse files Browse the repository at this point in the history
  • Loading branch information
macbre committed May 28, 2024
1 parent af689b6 commit 5beb8c2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion core/scope.js
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@
console,
"log:" + stringify(Array.prototype.slice.call(arguments))
);
// eslint-disable-next-line no-empty
// eslint-disable-next-line no-empty
} catch (e) {}
};

Expand Down
4 changes: 2 additions & 2 deletions eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ module.exports = [
rules: {
"prefer-const": "off",
"no-console": "off",
"no-async-promise-executor": 'off',
"no-async-promise-executor": "off",
// https://eslint.org/docs/latest/rules/no-unused-vars
"no-unused-vars": [
"error",
Expand All @@ -34,6 +34,6 @@ module.exports = [
},
},
{
ignores: ["coverage/**", 'test/webroot/**'],
ignores: ["coverage/**", "test/webroot/**"],
},
];

0 comments on commit 5beb8c2

Please sign in to comment.