Skip to content

Latest commit

History

History
39 lines (26 loc) 路 1.11 KB

hierarchy-separator.md

File metadata and controls

39 lines (26 loc) 路 1.11 KB

Deprecated hierarchy separator (hierarchy-separator)

Included in these configurations:

  • csf
  • recommended

Rule Details

Since Storybook 6.0, the ability to specify the hierarchy separators (how you control the grouping of story kinds in the sidebar) was removed. There is now a single separator /, which cannot be configured. If you are using | or . as a separator, you should change all of them to /.

Examples of incorrect code for this rule:

export default {
  title: 'Components|Forms/Input',
  component: Input,
}

Examples of correct code for this rule:

export default {
  title: 'Components/Forms/Input',
  component: Input,
}

Further Reading

For more details about this change: https://github.com/storybookjs/storybook/blob/next/MIGRATION.md#removed-hierarchy-separators

To automatically migrate all of your codebase and fix this issue, run this codemod in the root folder of your project:

npx sb@next migrate upgrade-hierarchy-separators --glob="*/**/*.stories.@(tsx|jsx|ts|js)"