Skip to content

Commit

Permalink
fix(rules): add Klarna
Browse files Browse the repository at this point in the history
  • Loading branch information
bodinsamuel committed Sep 15, 2023
1 parent f9bd562 commit b101bed
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/rules/__snapshots__/index.test.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,7 @@ exports[`all > should match everything 1`] = `
"jenkins",
"jira",
"kibana",
"klarna",
"klaviyo",
"koa",
"kubernetes",
Expand Down
1 change: 1 addition & 0 deletions src/rules/saas/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ import './hubspot.js';
import './huggingface.js';
import './hypertune.js';
import './jira.js';
import './klarna.js';
import './klaviyo.js';
import './launchdarkly.js';
import './lemonsqueezy.js';
Expand Down
8 changes: 8 additions & 0 deletions src/rules/saas/klarna.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import { register } from '../../register.js';

register({
tech: 'klarna',
name: 'Klarna',
type: 'saas',
dependencies: [],
});
1 change: 1 addition & 0 deletions src/types/techs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,7 @@ export type AllowedKeys =
| 'jest'
| 'jira'
| 'kibana'
| 'klarna'
| 'klaviyo'
| 'koa'
| 'kotlin'
Expand Down

0 comments on commit b101bed

Please sign in to comment.