@luxass/eslint-config 4.18.1 → 5.0.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,7 @@ 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) |
266
+ | `import/*` | `import-lite/*` | [eslint-plugin-import-lite](https://github.com/9romise/eslint-plugin-import-lite) |
267
267
  | `node/*` | `n/*` | [eslint-plugin-n](https://github.com/eslint-community/eslint-plugin-n) |
268
268
  | `yaml/*` | `yml/*` | [eslint-plugin-yml](https://github.com/ota-meshi/eslint-plugin-yml) |
269
269
  | `ts/*` | `@typescript-eslint/*` | [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint) |
@@ -361,10 +361,10 @@ export default luxass()
361
361
  )
362
362
  // overrides any named configs
363
363
  .override(
364
- "luxass/imports",
364
+ "luxass/stylistic/rules",
365
365
  {
366
366
  rules: {
367
- "import/order": ["error", { "newlines-between": "always" }],
367
+ "style/generator-star-spacing": ["error", { after: true, before: false }],
368
368
  }
369
369
  }
370
370
  )