@jabworks/eslint-plugin 1.0.0 → 1.0.1
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/CHANGELOG.md +6 -0
- package/README.md +2 -0
- package/package.json +5 -4
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# @jabworks/eslint-plugin
|
|
2
2
|
|
|
3
|
+
[](https://www.npmjs.com/package/@jabworks/eslint-plugin)
|
|
4
|
+
|
|
3
5
|
A custom ESLint plugin and shareable config for JavaScript, TypeScript, React, and Next.js projects. This package provides a set of curated rules and configurations to help enforce code quality, consistency, and best practices across your codebase.
|
|
4
6
|
|
|
5
7
|
## Features
|
package/package.json
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
"devDependencies": {
|
|
2
|
+
"dependencies": {
|
|
4
3
|
"@eslint-community/eslint-plugin-eslint-comments": "^4.5.0",
|
|
5
4
|
"@eslint/js": "^9.27.0",
|
|
6
5
|
"@next/eslint-plugin-next": "^15.3.2",
|
|
@@ -28,12 +27,14 @@
|
|
|
28
27
|
"typescript-eslint": "^8.33.0",
|
|
29
28
|
"@jabworks/typescript-config": "0.0.0"
|
|
30
29
|
},
|
|
30
|
+
"description": "Opinionated ESLint plugin and flat config for JS, TS, React, and Next.js",
|
|
31
31
|
"exports": {
|
|
32
32
|
".": {
|
|
33
33
|
"import": "./src/index.js",
|
|
34
34
|
"types": "./src/types/index.d.ts"
|
|
35
35
|
}
|
|
36
36
|
},
|
|
37
|
+
"homepage": "https://github.com/hieu1871998/style-guide/tree/main/packages/eslint-plugin",
|
|
37
38
|
"keywords": [
|
|
38
39
|
"eslint",
|
|
39
40
|
"eslint-config",
|
|
@@ -52,9 +53,9 @@
|
|
|
52
53
|
"private": false,
|
|
53
54
|
"repository": {
|
|
54
55
|
"type": "git",
|
|
55
|
-
"url": ""
|
|
56
|
+
"url": "https://github.com/hieu1871998/style-guide/tree/main/packages/eslint-plugin"
|
|
56
57
|
},
|
|
57
58
|
"type": "module",
|
|
58
59
|
"types": "./src/types/index.d.ts",
|
|
59
|
-
"version": "1.0.
|
|
60
|
+
"version": "1.0.1"
|
|
60
61
|
}
|