Skip to content

Commit

Permalink
Merge pull request #8 from saiichihashimoto/works!
Browse files Browse the repository at this point in the history
feat(cron): runs crons!
  • Loading branch information
kodiakhq[bot] authored Jan 13, 2024
2 parents a09b539 + 5a91e14 commit b35e183
Show file tree
Hide file tree
Showing 7 changed files with 770 additions and 32 deletions.
6 changes: 4 additions & 2 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@
{
"autoFix": false,
"cspell": {
"words": ["encryptor", "unstash", "zeplo"]
"words": ["cronstrue", "encryptor", "pino", "unstash", "zeplo"]
}
}
],
Expand All @@ -136,6 +136,9 @@
"ignore": ["eslint-enable"]
}
],
"fp/no-let": "off",
"fp/no-mutating-methods": "off",
"fp/no-mutation": "off",
"fp/no-nil": "off",
"fp/no-rest-parameters": "off",
"fp/no-throw": "off",
Expand Down Expand Up @@ -385,7 +388,6 @@
"id-length": "off",
"@typescript-eslint/consistent-type-imports": "off",
"@typescript-eslint/promise-function-async": "off",
"fp/no-let": "off",
"fp/no-mutation": "off",
"fp/no-unused-expression": "off",
"import/no-extraneous-dependencies": [
Expand Down
2 changes: 1 addition & 1 deletion .prettierrc
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"@standard-configs/prettier-plugin"
],
"quoteProps": "consistent",
"importOrder": ["^src/(.*)$", "^[./]"],
"importOrder": ["^node:", "<THIRD_PARTY_MODULES>", "^src/(.*)$", "^[./]"],
"importOrderSeparation": true,
"importOrderSortSpecifiers": true
}
Loading

0 comments on commit b35e183

Please sign in to comment.