@luxass/eslint-config 4.18.1 → 4.19.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -263,7 +263,6 @@ Since flat config requires us to explicitly provide the plugin names (instead of
263
263
 
264
264
  | New Prefix | Original Prefix | Source Plugin |
265
265
  | --------------------------- | ----------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------ |
266
- | `import/*` | `import-x/*` | [eslint-plugin-import-x](https://github.com/un-es/eslint-plugin-import-x) |
267
266
  | `node/*` | `n/*` | [eslint-plugin-n](https://github.com/eslint-community/eslint-plugin-n) |
268
267
  | `yaml/*` | `yml/*` | [eslint-plugin-yml](https://github.com/ota-meshi/eslint-plugin-yml) |
269
268
  | `ts/*` | `@typescript-eslint/*` | [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint) |
@@ -361,10 +360,10 @@ export default luxass()
361
360
  )
362
361
  // overrides any named configs
363
362
  .override(
364
- "luxass/imports",
363
+ "luxass/stylistic/rules",
365
364
  {
366
365
  rules: {
367
- "import/order": ["error", { "newlines-between": "always" }],
366
+ "style/generator-star-spacing": ["error", { after: true, before: false }],
368
367
  }
369
368
  }
370
369
  )