@mikey-pro/eslint-config 9.0.0 → 9.0.6

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.
Files changed (3) hide show
  1. package/package.json +2 -2
  2. package/rules.js +0 -1
  3. package/README.md +0 -43
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mikey-pro/eslint-config",
3
- "version": "9.0.0",
3
+ "version": "9.0.6",
4
4
  "description": "Mikey Pro ESLint configuration - Ultimate coding style guide for excellence",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
@@ -17,7 +17,7 @@
17
17
  "@stylistic/eslint-plugin": "^5.3.1",
18
18
  "@typescript-eslint/eslint-plugin": "^8.43.0",
19
19
  "@typescript-eslint/parser": "^8.43.0",
20
- "eslint": "^9.34.0",
20
+ "eslint": "^9.35.0",
21
21
  "eslint-config-prettier": "^10.1.8",
22
22
  "eslint-import-resolver-typescript": "^4.4.4",
23
23
  "eslint-plugin-boundaries": "^5.0.1",
package/rules.js CHANGED
@@ -285,7 +285,6 @@ export const baseRules = {
285
285
  'no-undef': 'error',
286
286
  'no-undef-init': 'warn',
287
287
  'no-undefined': 'off',
288
- 'no-undefined': 'off',
289
288
  'no-underscore-dangle': 'off',
290
289
 
291
290
  'no-unexpected-multiline': 'error',
package/README.md DELETED
@@ -1,43 +0,0 @@
1
- <div width="100%" align="center">
2
- <h1>
3
- <a href="https://github.com/chiefmikey/mikey-pro">
4
- <b>Mikey Pro</b>
5
- </a>
6
- </h1>
7
- </div>
8
-
9
- ## **@mikey-pro/eslint-config**
10
-
11
- A preset ESLint configuration
12
-
13
- ## Usage
14
-
15
- ### Install
16
-
17
- ```shell
18
- npm i -D mikey-pro
19
- ```
20
-
21
- ### Configure (Flat ESLint v9+ Recommended)
22
-
23
- Create / update `eslint.config.js`:
24
-
25
- ```js
26
- import mikeyPro from '@mikey-pro/eslint-config/flat';
27
-
28
- export default mikeyPro;
29
- ```
30
-
31
- ### Legacy Configuration (still supported)
32
-
33
- Extend in `package.json` (deprecated style):
34
-
35
- ```json
36
- {
37
- "eslintConfig": {
38
- "extends": ["@mikey-pro/eslint-config"]
39
- }
40
- }
41
- ```
42
-
43
- Both configurations are kept semantically equivalent; the legacy form will be removed in a future major release.