-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.13 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
{
"name": "eslint-config-wezom-relax-ts",
"version": "1.2.3-beta",
"description": "An ESLint shareable config for Typescript",
"main": ".eslintrc.js",
"files": [
".eslintrc.js"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prettier": "prettier .eslintrc.js --check --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WezomAgency/eslint-config-wezom-relax-ts.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/WezomAgency/eslint-config-wezom-relax-ts/issues"
},
"homepage": "https://github.com/WezomAgency/eslint-config-wezom-relax-ts#readme",
"prettier": {
"arrowParens": "always",
"bracketSpacing": true,
"printWidth": 90,
"semi": true,
"singleQuote": true,
"trailingComma": "none",
"tabWidth": 4,
"useTabs": true
},
"peerDependencies": {
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.0"
},
"devDependencies": {
"prettier": "^2.1.1"
}
}