-
Couldn't load subscription status.
- Fork 5.5k
Updating source names for SDK triggers #14638
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,13 +1,15 @@ | ||
| { | ||
| "name": "@pipedream/sdk", | ||
| "version": "0.1.0", | ||
| "version": "0.1.1", | ||
| "description": "Pipedream SDK Components", | ||
| "main": "sdk.app.mjs", | ||
| "keywords": [ | ||
| "pipedream", | ||
| "sdk" | ||
| "sdk", | ||
| "integrations", | ||
| "api" | ||
| ], | ||
| "homepage": "https://pipedream.com/apps/sdk", | ||
| "homepage": "https://pipedream.com/docs/connect/workflows", | ||
| "author": "Pipedream <[email protected]> (https://pipedream.com/)", | ||
| "publishConfig": { | ||
| "access": "public" | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,10 +1,12 @@ | ||
| /* eslint-disable pipedream/source-description */ | ||
| /* eslint-disable pipedream/source-name */ | ||
|
Comment on lines
+1
to
+2
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 💡 Codebase verification ESLint suppressions are redundant and can be removed 🔗 Analysis chainVerify if ESLint suppressions are still needed Given the simplified name and updated description format, we should verify if these ESLint rule suppressions are still necessary. 🏁 Scripts executedThe following scripts were executed for the analysis: Script: #!/bin/bash
# Description: Check ESLint rules and their purpose
# Search for ESLint rule definitions
rg -A 5 "pipedream/source-(name|description)" .eslintrc*
# Find other source files with similar suppressions
rg "eslint-disable pipedream/source-(name|description)" components/sdk/sources/
Length of output: 1860 |
||
| import sdk from "../../sdk.app.mjs"; | ||
|
|
||
| export default { | ||
| name: "New Event Received from the Vue Pipedream SDK", | ||
| version: "0.0.1", | ||
| name: "Vue", | ||
| version: "0.0.2", | ||
| key: "sdk-vue-event-received", | ||
| description: "Emit new event via the Vue Pipedream SDK.", | ||
| description: "Emit a new event via the Vue Pipedream SDK.", | ||
| props: { | ||
| sdk, | ||
| }, | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
💡 Codebase verification
Remove unnecessary ESLint disable directives.
The ESLint configuration files were not found, making the ESLint disable directives redundant.
🔗 Analysis chain
Verify if ESLint disable directives are still necessary.
The ESLint directives are disabling rules for source naming and description. Given that this PR is specifically about updating source names, we should verify if these rules are still relevant or if the new changes actually comply with the rules.
🏁 Scripts executed
The following scripts were executed for the analysis:
Script:
Length of output: 1754
Script:
Length of output: 293