@frsource/eslint-config 1.8.0 → 1.10.0

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 +8 -0
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -3,3 +3,11 @@
3
3
  ESLint configuration files used across the FRSOURCE organization.
4
4
 
5
5
  > Note: this package aims to provide shared configuration for specific languages/frameworks - it does not necesarily setup globals that are specific to your enviroment. [Always remember to add those using ESLint documentation](https://eslint.org/docs/latest/use/configure/language-options#using-configuration-files).
6
+
7
+ ## Usage
8
+
9
+ ```js
10
+ // eslint.config.mjs
11
+
12
+ export { typescript as default } from '@frsource/eslint-config';
13
+ ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@frsource/eslint-config",
3
- "version": "1.8.0",
3
+ "version": "1.10.0",
4
4
  "main": "index.mjs",
5
5
  "types": "index.d.mts",
6
6
  "type": "module",
@@ -17,8 +17,8 @@
17
17
  "eslint": "^9.1.0",
18
18
  "release-it": "^17.2.0",
19
19
  "typescript": "^5.4.5",
20
- "@frsource/prettier-config": "1.5.0",
21
- "@frsource/release-it-config": "1.9.0"
20
+ "@frsource/prettier-config": "1.6.0",
21
+ "@frsource/release-it-config": "1.10.0"
22
22
  },
23
23
  "peerDependencies": {
24
24
  "eslint": ">= 9",