We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 73f077b commit 818fa05Copy full SHA for 818fa05
package.json
@@ -2,6 +2,7 @@
2
"author": "Ayfri",
3
"description": "The argument parser used in the Advanced-Command-Handler.",
4
"devDependencies": {
5
+ "prettier": "^2.3.2",
6
"typescript": "^4.3.5"
7
},
8
"keywords": [
@@ -12,10 +13,20 @@
12
13
],
14
"license": "GNU",
15
"main": "index.js",
16
+ "prettier": {
17
+ "arrowParens": "avoid",
18
+ "bracketSpacing": false,
19
+ "printWidth": 160,
20
+ "singleQuote": true,
21
+ "tabWidth": 4,
22
+ "trailingComma": "es5",
23
+ "useTabs": true
24
+ },
25
"name": "argument-parser",
26
"scripts": {
27
"build": "tsc",
- "prepublishOnly": "npm run build"
28
+ "prepublishOnly": "npm run prettier && npm run build",
29
+ "prettier": "prettier --write *.ts *.json README.md"
30
31
"version": "0.1.0"
32
}
0 commit comments