@zemd/eslint-ts 1.0.1 → 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.
Files changed (2) hide show
  1. package/README.md +6 -3
  2. package/package.json +6 -5
package/README.md CHANGED
@@ -9,9 +9,9 @@ This package includes a set of ESLint configurations for Typescript projects.
9
9
 
10
10
  **The package includes**:
11
11
 
12
- | Package | Description | Rules |
13
- | ---------------------------------- | ------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
14
- | `@typescript-eslint/eslint-plugin` | At the moment the industry standard for enabling typescript support for ESLint | carefully hand-picked rules in conjunction with `strict-type-checked` config. Additionally, there are disabled rules for `@eslint/js` that overlap and can make issues. |
12
+ | Package | Description | Rules | License |
13
+ | ---------------------------------- | ------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------- |
14
+ | `@typescript-eslint/eslint-plugin` | At the moment the industry standard for enabling typescript support for ESLint | carefully hand-picked rules in conjunction with `strict-type-checked` config. Additionally, there are disabled rules for `@eslint/js` that overlap and can make issues. | MIT |
15
15
 
16
16
  ## Installation
17
17
 
@@ -28,6 +28,9 @@ import typescript from "@zemd/eslint-ts";
28
28
  export default [...typescript()];
29
29
  // import { typescript } from "@zemd/eslint-ts"; // import only typescript config
30
30
  // export default [...typescript()];
31
+
32
+ // you can also import any other config from @zemd/eslint-js or @zemd/eslint-common
33
+ // import { javascript, json, JS_FILES } from "@zemd/eslint-js";
31
34
  ```
32
35
 
33
36
  ## License
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zemd/eslint-ts",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "license": "Apache-2.0",
5
5
  "description": "Shared ESLint config for typescript projects",
6
6
  "keywords": [
@@ -43,15 +43,16 @@
43
43
  "eslint": ">=9.2.0"
44
44
  },
45
45
  "dependencies": {
46
- "@typescript-eslint/eslint-plugin": "^8.22.0",
47
- "@typescript-eslint/parser": "^8.22.0",
48
- "@zemd/eslint-js": "1.0.1"
46
+ "@typescript-eslint/eslint-plugin": "^8.24.0",
47
+ "@typescript-eslint/parser": "^8.24.0",
48
+ "@zemd/eslint-common": "1.0.1",
49
+ "@zemd/eslint-js": "1.0.2"
49
50
  },
50
51
  "devDependencies": {
51
52
  "@types/eslint": "^9.6.1",
52
53
  "@types/eslint__js": "^8.42.3",
53
54
  "@zemd/tsconfig": "^1.3.0",
54
- "eslint": "^9.19.0",
55
+ "eslint": "^9.20.1",
55
56
  "tsup": "^8.3.6",
56
57
  "typescript": "^5.7.3"
57
58
  },