Skip to content

Commit

Permalink
fix(rules): add Dataiku
Browse files Browse the repository at this point in the history
  • Loading branch information
bodinsamuel committed Sep 4, 2023
1 parent 127e17f commit f596cd5
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 @@ -49,6 +49,7 @@ exports[`all > should match everything 1`] = `
"cypressci",
"databricks",
"datadog",
"dataiku",
"deferrun",
"deno",
"dependabot",
Expand Down
7 changes: 7 additions & 0 deletions src/rules/etl/dataiku.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import { register } from '../../register.js';

register({
tech: 'dataiku',
name: 'Dataiku',
type: 'etl',
});
1 change: 1 addition & 0 deletions src/rules/etl/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@ import './apache_airflow.js';
import './apache_flink.js';
import './apache_storm.js';
import './databricks.js';
import './dataiku.js';
import './gcp.dataproc.js';
1 change: 1 addition & 0 deletions src/types/techs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ export type AllowedKeys =
| 'dart'
| 'databricks'
| 'datadog'
| 'dataiku'
| 'deferrun'
| 'deno'
| 'dependabot'
Expand Down

0 comments on commit f596cd5

Please sign in to comment.