Skip to content

Commit

Permalink
fix(rules): add Fabric
Browse files Browse the repository at this point in the history
  • Loading branch information
bodinsamuel committed Sep 3, 2023
1 parent 8c5d33c commit 95ff764
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 @@ -48,6 +48,7 @@ exports[`all > should match everything 1`] = `
"eslint",
"expodev",
"express",
"fabric",
"fastify",
"fastly",
"figma",
Expand Down
7 changes: 7 additions & 0 deletions src/rules/saas/fabric.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import { register } from '../../register.js';

register({
tech: 'fabric',
name: 'Fabric',
type: 'saas',
});
1 change: 1 addition & 0 deletions src/rules/saas/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import './datadog.js';
import './deferrun.js';
import './discord.js';
import './dropbox.js';
import './fabric.js';
import './figma.js';
import './gitbook.js';
import './github.js';
Expand Down
1 change: 1 addition & 0 deletions src/types/techs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ export type AllowedKeys =
| 'eslint'
| 'expodev'
| 'express'
| 'fabric'
| 'fastify'
| 'fastly'
| 'figma'
Expand Down

0 comments on commit 95ff764

Please sign in to comment.