@faergeek/eslint-config 7.1.3 → 7.1.5

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 (3) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/README.md +24 -0
  3. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -2,6 +2,18 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [conventional commits](https://www.conventionalcommits.org/) for commit guidelines.
4
4
 
5
+ ## 7.1.5 (2025-09-07)
6
+
7
+ ### Fixes
8
+
9
+ - Add a basic README.md
10
+
11
+ ## 7.1.4 (2025-09-07)
12
+
13
+ ### Fixes
14
+
15
+ - Use environment for publishing
16
+
5
17
  ## 7.1.3 (2025-09-07)
6
18
 
7
19
  ### Fixes
package/README.md ADDED
@@ -0,0 +1,24 @@
1
+ # @faergeek/eslint-config
2
+
3
+ [![npm](https://nodei.co/npm/@faergeek/eslint-config.svg?style=compact)](https://www.npmjs.com/package/@faergeek/eslint-config)
4
+
5
+ ## Install
6
+
7
+ ```sh
8
+ npm i -D @faergeek/eslint-config
9
+ ```
10
+
11
+ ## Use
12
+
13
+ ```javascript
14
+ import { base, node, react, typescript, vitest } from '@faergeek/eslint-config';
15
+ import { defineConfig } from 'eslint/config';
16
+
17
+ export default defineConfig([
18
+ base,
19
+ react,
20
+ typescript,
21
+ { files: ['*.js'], extends: [node] },
22
+ { files: ['**/*.spec.*'], extends: [vitest] },
23
+ ]);
24
+ ```
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "module",
3
3
  "name": "@faergeek/eslint-config",
4
- "version": "7.1.3",
4
+ "version": "7.1.5",
5
5
  "exports": "./index.js",
6
6
  "files": [
7
7
  "./CHANGELOG.md",