sku@15.8.0
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 formatwill automatically fix the sort order.If you need to, you can disable this rule by using
dangerouslySetESLintConfigin your sku config (not recommended):const config = { ..., dangerouslySetESLintConfig: (esLintConfig) => [ ...esLintConfig, { files: ['**/package.json'], rules: { 'package-json/sort': 'off', }, }, ], }