-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.09 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "yarn-plugin-git-hooks",
"main": "./src/index.ts",
"version": "0.3.0",
"license": "MIT",
"author": "Carter Himmel <[email protected]>",
"scripts": {
"lint": "prettier --check . && eslint src --ext ts --format=pretty",
"format": "prettier --write . && eslint src --ext ts --fix --format=pretty",
"build": "builder build plugin"
},
"dependencies": {
"ci-info": "^3.8.0"
},
"devDependencies": {
"@commitlint/cli": "^17.6.7",
"@commitlint/config-angular": "^17.6.7",
"@yarnpkg/builder": "^4.0.0-rc.48",
"@yarnpkg/core": "^4.0.0-rc.48",
"@yarnpkg/fslib": "^3.0.0-rc.48",
"eslint": "^8.46.0",
"eslint-config-neon": "^0.1.47",
"eslint-formatter-pretty": "^5.0.0",
"prettier": "^2.8.8",
"typescript": "^5.1.6"
},
"eslintConfig": {
"extends": [
"neon/common",
"neon/node",
"neon/typescript",
"neon/prettier"
],
"parserOptions": {
"project": "./tsconfig.json"
},
"rules": {
"comma-dangle": [
"error",
"always-multiline"
],
"@typescript-eslint/naming-convention": 0,
"@typescript-eslint/ban-types": 0,
"@typescript-eslint/restrict-template-expressions": 0,
"@typescript-eslint/no-base-to-string": 0,
"@typescript-eslint/space-before-function-paren": 0,
"tsdoc/syntax": 0,
"unicorn/prefer-node-protocol": 0
},
"ignorePatterns": [
"bundles",
"dist",
".yarn"
]
},
"prettier": {
"printWidth": 120,
"useTabs": false,
"tabWidth": 2,
"singleQuote": true,
"quoteProps": "as-needed",
"trailingComma": "all",
"endOfLine": "lf"
},
"commitlint": {
"extends": [
"@commitlint/config-angular"
],
"rules": {
"type-enum": [
2,
"always",
[
"chore",
"build",
"ci",
"docs",
"feat",
"fix",
"perf",
"refactor",
"revert",
"style",
"test",
"types",
"wip"
]
]
}
},
"packageManager": "[email protected]"
}