@ghettoddos/eslint-config 1.6.2 → 1.8.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 +3 -3
- package/dist/index.d.ts +3897 -1718
- package/dist/index.js +331 -129
- package/package.json +51 -32
package/README.md
CHANGED
|
@@ -295,7 +295,7 @@ Since flat config requires us to explicitly provide the plugin names (instead of
|
|
|
295
295
|
|
|
296
296
|
| New Prefix | Original Prefix | Source Plugin |
|
|
297
297
|
| ---------- | ---------------------- | ------------------------------------------------------------------------------------------ |
|
|
298
|
-
| `import/*` | `import-
|
|
298
|
+
| `import/*` | `import-lite/*` | [eslint-plugin-import-lite](https://github.com/9romise/eslint-plugin-import-lite) |
|
|
299
299
|
| `node/*` | `n/*` | [eslint-plugin-n](https://github.com/eslint-community/eslint-plugin-n) |
|
|
300
300
|
| `yaml/*` | `yml/*` | [eslint-plugin-yml](https://github.com/ota-meshi/eslint-plugin-yml) |
|
|
301
301
|
| `ts/*` | `@typescript-eslint/*` | [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint) |
|
|
@@ -392,9 +392,9 @@ export default config()
|
|
|
392
392
|
// some configs before the main config
|
|
393
393
|
()
|
|
394
394
|
// overrides any named configs
|
|
395
|
-
.override('
|
|
395
|
+
.override('stylistic/rules', {
|
|
396
396
|
rules: {
|
|
397
|
-
'
|
|
397
|
+
'style/generator-star-spacing': ['error', { after: true, before: false }],
|
|
398
398
|
},
|
|
399
399
|
})
|
|
400
400
|
// rename plugin prefixes
|