@evaneos/front-config 0.0.3 → 1.0.2
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 +2 -2
- package/package.json +3 -1
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
@evaneos/front-config is the main resource for shared js/ts/tsx linting and config across Evaneos apps.
|
|
4
4
|
|
|
5
|
-
##
|
|
5
|
+
## Install
|
|
6
6
|
|
|
7
7
|
```shell
|
|
8
8
|
npm install @evaneos/front-config@latest
|
|
@@ -14,7 +14,7 @@ npm install @evaneos/front-config@latest
|
|
|
14
14
|
|
|
15
15
|
In your `eslint.config.js` file, add:
|
|
16
16
|
|
|
17
|
-
```
|
|
17
|
+
```js
|
|
18
18
|
const evaneosConfig = require("@evaneos/front-config/linting/eslint.config.js")
|
|
19
19
|
module.export = [
|
|
20
20
|
...evaneosConfig
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@evaneos/front-config",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"engines": {
|
|
5
5
|
"node": ">=v18",
|
|
6
6
|
"npm": ">=9"
|
|
@@ -22,7 +22,9 @@
|
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"@eslint/js": "^9.17.0",
|
|
24
24
|
"eslint-config-prettier": "^9.1.0",
|
|
25
|
+
"eslint-plugin-import": "^2.31.0",
|
|
25
26
|
"eslint-plugin-react": "^7.37.3",
|
|
27
|
+
"eslint-plugin-react-hooks": "^4.6.2",
|
|
26
28
|
"eslint-plugin-testing-library": "^6.5.0",
|
|
27
29
|
"typescript": "^5.7.2",
|
|
28
30
|
"typescript-eslint": "^8.19.0"
|