Skip to content

Commit

Permalink
chore: delete unused functions (#2050)
Browse files Browse the repository at this point in the history
see #2047

`signOut` and `toggle` are not used, not exported, and not within region tags.
  • Loading branch information
fhinkel authored Nov 6, 2020
1 parent 764d0fe commit ae57672
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion run/idp-sql/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
{
"rules": {
"no-undef": "warn",
"node/no-unpublished-require": "warn",
"no-unused-vars": "warn",
"no-process-exit": "warn"
}
Expand Down
2 changes: 1 addition & 1 deletion run/idp-sql/logging.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
const {createLogger, transports, format} = require('winston');

// Add severity label for Stackdriver log parsing
const addSeverity = format((info, opts) => {
const addSeverity = format(info => {
info.severity = info.level;
return info;
});
Expand Down

0 comments on commit ae57672

Please sign in to comment.