@faasjs/lint 2.6.0 → 2.7.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 +5 -1
  2. package/package.json +4 -2
package/README.md CHANGED
@@ -9,9 +9,13 @@ Lint tool for FaasJS.
9
9
 
10
10
  1. Install `@faasjs/lint`: `npm install @faasjs/lint`
11
11
  2. Create `biome.json` with content:
12
-
13
12
  ```json
14
13
  {
15
14
  "extends": ["@faasjs/lint/biome"]
16
15
  }
17
16
  ```
17
+ 3. Add script `"lint": "biome lint"` to `package.json`.
18
+
19
+ ## Usage
20
+
21
+ See [Biome CLI](https://biomejs.dev/reference/cli/).
package/package.json CHANGED
@@ -1,9 +1,11 @@
1
1
  {
2
2
  "name": "@faasjs/lint",
3
- "version": "2.6.0",
3
+ "version": "2.7.0",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
- "files": ["biome.json"],
6
+ "files": [
7
+ "biome.json"
8
+ ],
7
9
  "exports": {
8
10
  "./biome": "./biome.json"
9
11
  },