@zemd/eslint-js 1.0.4 → 1.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.
- package/README.md +15 -4
- package/package.json +6 -7
package/README.md
CHANGED
@@ -1,8 +1,9 @@
|
|
1
|
-
#
|
1
|
+
# Shared ESLint config for javascript projects
|
2
2
|
|
3
3
|
[](https://npmjs.com/package/@zemd/eslint-js)
|
4
|
+
[](https://github.com/zemd/eslint-flat-config)
|
4
5
|
|
5
|
-
This package includes a set of ESLint configurations for JavaScript projects.
|
6
|
+
This package includes a set of ESLint configurations for **JavaScript** projects.
|
6
7
|
|
7
8
|
**The package includes**:
|
8
9
|
|
@@ -30,10 +31,20 @@ import javascript from "@zemd/eslint-js";
|
|
30
31
|
export default [...javascript()];
|
31
32
|
```
|
32
33
|
|
34
|
+
## You might be also interested in
|
35
|
+
|
36
|
+
| Package | Version | Description |
|
37
|
+
| ---------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------- |
|
38
|
+
| [`@zemd/eslint-js`](../js/README.md) | [](https://npmjs.com/package/@zemd/eslint-js) | JavaScript-only rules. |
|
39
|
+
| [`@zemd/eslint-ts`](../ts/README.md) | [](https://npmjs.com/package/@zemd/eslint-ts) | TypeScript rules (includes JS rules from @zemd/eslint-js). |
|
40
|
+
| [`@zemd/eslint-react`](../react/README.md) | [](https://npmjs.com/package/@zemd/eslint-react) | React rules (includes TS rules from `@zemd/eslint-ts` and JS rules from `@zemd/eslint-js`). |
|
41
|
+
| [`@zemd/eslint-rock-stack`](../rock-stack/README.md) | [](https://npmjs.com/package/@zemd/eslint-rock-stack) | Rules for Fullstack projects that include React.js, GraphQL, Playwright, Tailwind(optional), Turbo, Vitest, and Storybook. |
|
42
|
+
| [`@zemd/eslint-next`](../next/README.md) | [](https://npmjs.com/package/@zemd/eslint-next) | Rules for Next.js projects (inherits from `@zemd/eslint-rock-stack`). |
|
43
|
+
|
33
44
|
## License
|
34
45
|
|
35
|
-
The `@zemd/eslint-js` is licensed under
|
46
|
+
The `@zemd/eslint-js` is licensed under **Apache-2.0 license** 😇.
|
36
47
|
|
37
|
-
## Donate
|
48
|
+
## 💙 💛 Donate
|
38
49
|
|
39
50
|
[](https://u24.gov.ua/)
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@zemd/eslint-js",
|
3
|
-
"version": "1.0.
|
3
|
+
"version": "1.0.6",
|
4
4
|
"license": "Apache-2.0",
|
5
5
|
"description": "Shared ESLint config for javascript projects",
|
6
6
|
"keywords": [
|
@@ -43,19 +43,18 @@
|
|
43
43
|
},
|
44
44
|
"dependencies": {
|
45
45
|
"@eslint-community/eslint-plugin-eslint-comments": "^4.4.1",
|
46
|
-
"@eslint/js": "^9.
|
46
|
+
"@eslint/js": "^9.21.0",
|
47
47
|
"@eslint/json": "^0.10.0",
|
48
|
-
"eslint-config-flat-gitignore": "^2.
|
48
|
+
"eslint-config-flat-gitignore": "^2.1.0",
|
49
49
|
"eslint-plugin-sonarjs": "^3.0.2",
|
50
50
|
"eslint-plugin-unicorn": "^57.0.0",
|
51
|
-
"globals": "^
|
52
|
-
"@zemd/eslint-common": "1.0.
|
51
|
+
"globals": "^16.0.0",
|
52
|
+
"@zemd/eslint-common": "1.0.2"
|
53
53
|
},
|
54
54
|
"devDependencies": {
|
55
55
|
"@types/eslint": "^9.6.1",
|
56
|
-
"@types/eslint__js": "^8.42.3",
|
57
56
|
"@zemd/tsconfig": "^1.3.0",
|
58
|
-
"eslint": "^9.
|
57
|
+
"eslint": "^9.21.0",
|
59
58
|
"tsup": "^8.3.6",
|
60
59
|
"typescript": "^5.7.3"
|
61
60
|
},
|