Skip to content

Commit

Permalink
fix(rules): add SAS
Browse files Browse the repository at this point in the history
  • Loading branch information
bodinsamuel committed Sep 20, 2023
1 parent 3fd134c commit 048229c
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 @@ -265,6 +265,7 @@ exports[`all > should match everything 1`] = `
"salesforce",
"sanity",
"sap",
"sas",
"scaleway",
"sendgrid",
"sentry",
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 @@ -47,6 +47,7 @@ import './resend.js';
import './salesforce.js';
import './sanity.js';
import './sap.js';
import './sas.js';
import './sendgrid.js';
import './sentry.js';
import './servicenow.js';
Expand Down
7 changes: 7 additions & 0 deletions src/rules/saas/sas.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import { register } from '../../register.js';

register({
tech: 'sas',
name: 'SAS',
type: 'saas',
});
1 change: 1 addition & 0 deletions src/types/techs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -292,6 +292,7 @@ export type AllowedKeys =
| 'salesforce'
| 'sanity'
| 'sap'
| 'sas'
| 'scaleway'
| 'scss'
| 'sendgrid'
Expand Down

0 comments on commit 048229c

Please sign in to comment.