-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 2.24 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
93
94
95
96
97
98
99
100
101
102
103
{
"name": "eslint-plugin-comment-reflow",
"version": "1.3.2",
"main": "dist/src/index.js",
"scripts": {
"prepack": "rm -rf dist && tsc",
"tsc": "tsc -w true",
"fix": "eslint --ext ts src/* --fix",
"test": "rm -rf dist && tsc && node dist/tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jfroelich/eslint-plugin-comment-reflow.git"
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "./tsconfig.json",
"ecmaVersion": 2020,
"sourceType": "module"
},
"extends": [
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking",
"plugin:eslint-plugin-eslint-plugin/recommended"
],
"plugins": [
"@typescript-eslint",
"eslint-plugin-eslint-plugin"
],
"rules": {
"semi": [
"error",
"always"
],
"no-multiple-empty-lines": [
"error",
{
"max": 1
}
],
"comma-spacing": "off",
"@typescript-eslint/comma-spacing": [
"error",
{
"before": false,
"after": true
}
],
"@typescript-eslint/explicit-module-boundary-types": "off",
"no-trailing-spaces": [
"error"
],
"eol-last": [
"error",
"always"
],
"indent": [
"error",
2
],
"no-multi-spaces": [
"error"
],
"quotes": [
"error",
"single"
],
"semi-spacing": [
"error"
]
}
},
"license": "MIT",
"author": {
"name": "Josh Froelich",
"email": "[email protected]"
},
"keywords": [
"eslint",
"eslintplugin",
"comments",
"javascript",
"typescript"
],
"config": {
"fund": false
},
"peerDependencies": {
"eslint": "^7.16.0"
},
"devDependencies": {
"@tsconfig/node14": "^1.0.0",
"@types/eslint": "^7.2.6",
"@types/node": "^14.14.17",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "^4.11.1",
"eslint": "^7.16.0",
"eslint-plugin-eslint-plugin": "^2.3.0",
"typescript": "^4.1.3"
}
}