@nexim/eslint-config 1.0.1 → 1.1.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 +10 -0
- package/README.md +5 -4
- package/package.json +5 -6
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,16 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [1.1.1](https://github.com/the-nexim/nanolib/compare/@nexim/eslint-config@1.1.0...@nexim/eslint-config@1.1.1) (2025-01-05)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @nexim/eslint-config
|
|
9
|
+
|
|
10
|
+
## [1.1.0](https://github.com/the-nexim/nanolib/compare/@nexim/eslint-config@1.0.1...@nexim/eslint-config@1.1.0) (2024-12-24)
|
|
11
|
+
|
|
12
|
+
### Features
|
|
13
|
+
|
|
14
|
+
* **service-worker:** add service worker utilities and logging support ([#18](https://github.com/the-nexim/nanolib/issues/18)) ([d428086](https://github.com/the-nexim/nanolib/commit/d428086dd98fbb5dfd077d14de4de8dd29ed78dc)) by @
|
|
15
|
+
|
|
6
16
|
## [1.0.1](https://github.com/the-nexim/nanolib/compare/@nexim/eslint-config@1.0.0...@nexim/eslint-config@1.0.1) (2024-12-10)
|
|
7
17
|
|
|
8
18
|
**Note:** Version bump only for package @nexim/eslint-config
|
package/README.md
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
# Nexim's ESLint Configurations
|
|
2
2
|
|
|
3
|
-

|
|
3
|
+

|
|
5
4
|

|
|
6
|
-

|
|
6
|
+

|
|
7
|
+
|
|
8
|
+
## Overview
|
|
8
9
|
|
|
9
10
|
Alwatr ECMAScript Style Guide as a ESLint [shareable configurations](http://eslint.org/docs/developer-guide/shareable-configs.html).
|
|
10
11
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nexim/eslint-config",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"description": "Base Eslint configuration for Nexim projects.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"eslint",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"directory": "packages/eslint-config"
|
|
34
34
|
},
|
|
35
35
|
"license": "AGPL-3.0-only",
|
|
36
|
-
"author": "S. Amir Mohammad Najafi <njfamirm@gmail.com> (www.njfamirm.ir)",
|
|
36
|
+
"author": "S. Amir Mohammad Najafi <njfamirm@gmail.com> (https://www.njfamirm.ir)",
|
|
37
37
|
"contributors": [
|
|
38
38
|
"Arash Ghardashpoor <arash.qardashpoor@gmail.com> (https://www.agpagp.ir)"
|
|
39
39
|
],
|
|
@@ -41,8 +41,7 @@
|
|
|
41
41
|
"main": "./eslint-config.cjs",
|
|
42
42
|
"files": [
|
|
43
43
|
"**/*.{js,mjs,cjs,map,d.ts,html,md,LEGAL.txt}",
|
|
44
|
-
"LICENSE"
|
|
45
|
-
"!demo/**/*"
|
|
44
|
+
"LICENSE"
|
|
46
45
|
],
|
|
47
46
|
"devDependencies": {
|
|
48
47
|
"@typescript-eslint/eslint-plugin": "^7.15.0",
|
|
@@ -51,7 +50,7 @@
|
|
|
51
50
|
"eslint-import-resolver-typescript": "^3.6.3",
|
|
52
51
|
"eslint-plugin-import": "^2.31.0",
|
|
53
52
|
"eslint-plugin-require-extensions": "^0.1.3",
|
|
54
|
-
"typescript": "^5.
|
|
53
|
+
"typescript": "^5.7.2"
|
|
55
54
|
},
|
|
56
55
|
"peerDependencies": {
|
|
57
56
|
"@typescript-eslint/eslint-plugin": ">7.0.0 <8.0.0",
|
|
@@ -64,5 +63,5 @@
|
|
|
64
63
|
"publishConfig": {
|
|
65
64
|
"access": "public"
|
|
66
65
|
},
|
|
67
|
-
"gitHead": "
|
|
66
|
+
"gitHead": "52096aedc16222a434b2badfe7e860f671c1c5f8"
|
|
68
67
|
}
|