Skip to content

sku@15.8.0

Choose a tag to compare

@seek-oss-ci seek-oss-ci released this 14 Jan 02:10
· 99 commits to master since this release
5bdac49

Minor Changes

  • lint|format: Enforce sorted keys in package.json (#1480)

    ESLint will now warn if the keys in package.json are not sorted. Running sku format will automatically fix the sort order.

    If you need to, you can disable this rule by using dangerouslySetESLintConfig in your sku config (not recommended):

    const config = {
      ...,
      dangerouslySetESLintConfig: (esLintConfig) => [
        ...esLintConfig,
        {
          files: ['**/package.json'],
          rules: {
            'package-json/sort': 'off',
          },
        },
      ],
    }