@saashub/qoq-prettier 3.2.4 → 3.2.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.
- package/AGENTS.md +27 -0
- package/package.json +5 -4
package/AGENTS.md
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# @saashub/qoq-prettier — Agent Context
|
|
2
|
+
|
|
3
|
+
Prettier configuration template for QoQ projects.
|
|
4
|
+
|
|
5
|
+
## Usage
|
|
6
|
+
|
|
7
|
+
Reference it in `.prettierrc`:
|
|
8
|
+
|
|
9
|
+
```json
|
|
10
|
+
"@saashub/qoq-prettier"
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
Or in `prettier.config.js`:
|
|
14
|
+
|
|
15
|
+
```js
|
|
16
|
+
export default '@saashub/qoq-prettier';
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
## Config
|
|
20
|
+
|
|
21
|
+
```json
|
|
22
|
+
{
|
|
23
|
+
"trailingComma": "es5",
|
|
24
|
+
"printWidth": 100,
|
|
25
|
+
"singleQuote": true
|
|
26
|
+
}
|
|
27
|
+
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@saashub/qoq-prettier",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.5",
|
|
4
4
|
"homepage": "https://github.com/saashub-it/qoq/tree/master/packages/prettier",
|
|
5
5
|
"bugs": {
|
|
6
6
|
"url": "https://github.com/saashub-it/qoq/issues"
|
|
@@ -24,7 +24,8 @@
|
|
|
24
24
|
"main": "./index.json",
|
|
25
25
|
"files": [
|
|
26
26
|
"src",
|
|
27
|
-
"index.json"
|
|
27
|
+
"index.json",
|
|
28
|
+
"AGENTS.md"
|
|
28
29
|
],
|
|
29
30
|
"scripts": {
|
|
30
31
|
"build": "rimraf ./index.json && node ./src/index.js"
|
|
@@ -39,10 +40,10 @@
|
|
|
39
40
|
"prettier": "^3"
|
|
40
41
|
},
|
|
41
42
|
"engines": {
|
|
42
|
-
"node": ">=22.13.
|
|
43
|
+
"node": ">=22.13.1"
|
|
43
44
|
},
|
|
44
45
|
"publishConfig": {
|
|
45
46
|
"access": "public"
|
|
46
47
|
},
|
|
47
|
-
"gitHead": "
|
|
48
|
+
"gitHead": "f31bd90691c966db38454221e7e963ea59fa73f6"
|
|
48
49
|
}
|