返回 Skill 列表
extension
分类: 开发与工程无需 API Key

flow-error-eslint-compliance

修复迁移后的Output SDK代码中的ESLint问题。在迁移后看到lint错误时使用,或者在编写需要遵循项目约定的新Output SDK代码时使用。

person作者: jakexiaohubgithub

ESLint Compliance for Output SDK Code

Overview

This skill helps fix ESLint issues that commonly arise during Flow to Output SDK migration. The Output SDK project enforces strict ESLint rules that must be followed in all code.

When to Use This Skill

After Migration:

  • Running npm run lint shows errors
  • IDE highlights style issues in migrated code

During Code Review:

  • Reviewing migrated code for style compliance
  • Ensuring new code follows conventions

ESLint Rules Reference

1. No Trailing Commas

Never use trailing commas in arrays, objects, or function parameters.

// WRONG
const config = {
  name: 'workflow',
  version: '1.0',  // trailing comma
};

const items = [
  'item1',
  'item2',  // trailing comma
];

// CORRECT
const config = {
  name: 'workflow',
  version: '1.0'
};

const items = [
  'item1',
  'item2'
];

2. Array Bracket Spacing

Always include spaces inside array brackets.

// WRONG
const items = [item1, item2];
const empty = [];

// CORRECT
const items = [ item1, item2 ];
const empty = [];  // empty arrays don't need spaces

3. No Return Await

Don't use return await, just return the promise directly.

// WRONG
async function getData() {
  return await fetchData();
}

// CORRECT
async function getData() {
  return fetchData();
}

// Also CORRECT (if you need to do something after)
async function getData() {
  const result = await fetchData();
  console.log( 'Fetched:', result );
  return result;
}

4. Line Length (Max 150 Characters)

Break long lines to stay under 150 characters.

// WRONG
const result = await generateObject( { prompt: 'analyze@v1', variables: { topic: input.topic, context: input.context, additionalInfo: input.additionalInfo } } );

// CORRECT
const result = await generateObject( {
  prompt: 'analyze@v1',
  variables: {
    topic: input.topic,
    context: input.context,
    additionalInfo: input.additionalInfo
  }
} );

5. Parentheses Spacing

Always include spaces inside parentheses (except empty ones).

// WRONG
if (condition) {
  doSomething(arg1, arg2);
}
for (let i = 0; i < 10; i++) {
}

// CORRECT
if ( condition ) {
  doSomething( arg1, arg2 );
}
for ( let i = 0; i < 10; i++ ) {
}

// Empty parentheses don't need spaces
fn();
new Class();

6. Single Quotes

Use single quotes for strings, not double quotes.

// WRONG
const name = "workflow";
import { step } from "@output.ai/core";

// CORRECT
const name = 'workflow';
import { step } from '@output.ai/core';

7. Spaces Around Operators

Add spaces around operators.

// WRONG
const sum = a+b;
const isValid = count>0&&count<10;

// CORRECT
const sum = a + b;
const isValid = count > 0 && count < 10;

8. Camelcase for Variables

Use camelCase for variable names.

// WRONG
const user_name = 'John';
const UserData = {};

// CORRECT
const userName = 'John';
const userData = {};

9. Const/Let Instead of Var

Never use var, always use const or let.

// WRONG
var count = 0;
var name = 'test';

// CORRECT
let count = 0;
const name = 'test';

10. Object Curly Spacing

Include spaces inside object braces.

// WRONG
const obj = {key: 'value'};

// CORRECT
const obj = { key: 'value' };

Quick Fix Commands

Run ESLint Auto-Fix

npm run lint:fix

Check Specific Files

npx eslint src/workflows/my-workflow/*.ts

Fix Specific Files

npx eslint --fix src/workflows/my-workflow/*.ts

Complete Example

Before (Non-Compliant)

import {z} from "@output.ai/core";
import {step, workflow} from "@output.ai/core";

const InputSchema = z.object({
  user_id: z.string(),
  search_query: z.string(),
});

export const searchStep = step({
  name: "searchStep",
  inputSchema: InputSchema,
  fn: async (input) => {
    var results = [];
    if(input.search_query.length>0) {
      const data = await fetchResults(input.search_query, input.user_id);
      results = [data.item1, data.item2,];
    }
    return await processResults({results: results,});
  },
});

After (ESLint Compliant)

import { z } from '@output.ai/core';
import { step, workflow } from '@output.ai/core';

const InputSchema = z.object( {
  userId: z.string(),
  searchQuery: z.string()
} );

export const searchStep = step( {
  name: 'searchStep',
  inputSchema: InputSchema,
  fn: async ( input ) => {
    let results = [];
    if ( input.searchQuery.length > 0 ) {
      const data = await fetchResults( input.searchQuery, input.userId );
      results = [ data.item1, data.item2 ];
    }
    return processResults( { results: results } );
  }
} );

Common Migration Patterns

Flow SDK to Output SDK Import Style

// Flow SDK style (may have inconsistent quotes/spacing)
import {z} from "zod";
import { WorkflowScope } from "@flow/sdk";

// Output SDK style (consistent single quotes, spacing)
import { z, step, workflow } from '@output.ai/core';

Function Parameter Style

// Flow SDK style
async function myActivity(param1: string, param2: number) {
  // ...
}

// Output SDK style with ESLint compliance
export const myStep = step( {
  name: 'myStep',
  inputSchema: z.object( {
    param1: z.string(),
    param2: z.number()
  } ),
  fn: async ( input ) => {
    const { param1, param2 } = input;
    // ...
  }
} );

Verification Steps

1. Run lint check

npm run lint

2. Auto-fix what can be fixed

npm run lint:fix

3. Manually fix remaining issues

Review any errors that couldn't be auto-fixed and apply the rules above.

4. Verify no errors remain

npm run lint
# Should exit with 0 errors

Related Skills

  • flow-error-zod-import - Zod import source issues
  • flow-convert-activities-to-steps - Step conversion with proper style
  • flow-validation-checklist - Complete migration validation