Skip to content

Commit

Permalink
fix(rules): add Wiz
Browse files Browse the repository at this point in the history
  • Loading branch information
bodinsamuel committed Sep 3, 2023
1 parent cdb4501 commit 813e20a
Show file tree
Hide file tree
Showing 4 changed files with 10 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 @@ -168,6 +168,7 @@ exports[`all > should match everything 1`] = `
"vite",
"vue",
"webpack",
"wiz",
"zendesk",
"zookeeper",
"zoom",
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 @@ -32,6 +32,7 @@ import './stripe.js';
import './snyk.js';
import './splunk.js';
import './sqreen.js';
import './wiz.js';
import './zendesk.js';
import './zuora.js';
import './zoom.js';
7 changes: 7 additions & 0 deletions src/rules/saas/wiz.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import { register } from '../../register.js';

register({
tech: 'wiz',
name: 'Wiz',
type: 'saas',
});
1 change: 1 addition & 0 deletions src/types/techs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,7 @@ export type AllowedKeys =
| 'vite'
| 'vue'
| 'webpack'
| 'wiz'
| 'zapier'
| 'zendesk'
| 'zookeeper'
Expand Down

0 comments on commit 813e20a

Please sign in to comment.