Actualizacion maquina principal
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-eslint / .release / package.json
1 {
2   "name": "coc-eslint",
3   "version": "1.2.0",
4   "description": "eslint extension for coc",
5   "main": "lib/index.js",
6   "publisher": "chemzqm",
7   "keywords": [
8     "coc.nvim",
9     "eslint"
10   ],
11   "engines": {
12     "coc": "^0.0.64"
13   },
14   "scripts": {},
15   "activationEvents": [
16     "*"
17   ],
18   "contributes": {
19     "commands": [
20       {
21         "title": "Fix all auto-fixable problems",
22         "category": "ESLint",
23         "command": "eslint.executeAutofix"
24       },
25       {
26         "title": "Create a '.eslintrc' config file",
27         "category": "ESLint",
28         "command": "eslint.createConfig"
29       }
30     ],
31     "configuration": {
32       "type": "object",
33       "title": "Eslint",
34       "properties": {
35         "eslint.enable": {
36           "type": "boolean",
37           "default": true,
38           "description": "enable lint for files."
39         },
40         "eslint.quiet": {
41           "type": "boolean",
42           "default": false,
43           "description": "Turns on quiet mode, which ignores warnings."
44         },
45         "eslint.trace.server": {
46           "type": "string",
47           "default": "off",
48           "enum": [
49             "off",
50             "messages",
51             "verbose"
52           ]
53         },
54         "eslint.execArgv": {
55           "type": "array",
56           "default": [],
57           "items": {
58             "type": "string"
59           }
60         },
61         "eslint.filetypes": {
62           "type": "array",
63           "default": [
64             "javascript",
65             "javascriptreact"
66           ],
67           "items": {
68             "type": "string"
69           }
70         },
71         "eslint.packageManager": {
72           "type": "string",
73           "default": "npm",
74           "enum": [
75             "npm",
76             "yarn"
77           ]
78         },
79         "eslint.run": {
80           "type": "string",
81           "default": "onType",
82           "enum": [
83             "onType",
84             "onSave"
85           ]
86         },
87         "eslint.nodePath": {
88           "type": [
89             "string",
90             "null"
91           ],
92           "default": null,
93           "description": "A path added to NODE_PATH when resolving the eslint module."
94         },
95         "eslint.autoFix": {
96           "type": "boolean",
97           "default": true,
98           "description": "Enable auto fix feature"
99         },
100         "eslint.options": {
101           "scope": "resource",
102           "type": "object",
103           "default": {},
104           "description": "The eslint options object to provide args normally passed to eslint when executed from a command line (see http://eslint.org/docs/developer-guide/nodejs-api#cliengine)."
105         },
106         "eslint.autoFixOnSave": {
107           "type": "boolean",
108           "default": false
109         },
110         "eslint.codeAction.disableRuleComment": {
111           "scope": "resource",
112           "type": "object",
113           "default": {
114             "enable": true,
115             "location": "separateLine"
116           },
117           "properties": {
118             "enable": {
119               "type": "boolean",
120               "default": true,
121               "description": "Show the disable code actions."
122             },
123             "location": {
124               "type": "string",
125               "enum": [
126                 "separateLine",
127                 "sameLine"
128               ],
129               "default": "separateLine",
130               "description": "Configure the disable rule code action to insert the comment on the same line or a new line."
131             }
132           }
133         },
134         "eslint.codeAction.showDocumentation": {
135           "scope": "resource",
136           "type": "object",
137           "default": {
138             "enable": true
139           },
140           "properties": {
141             "enable": {
142               "type": "boolean",
143               "default": true,
144               "description": "Show the documentation code actions."
145             }
146           }
147         }
148       }
149     }
150   },
151   "author": "chemzqm@gmail.com",
152   "license": "MIT",
153   "devDependencies": {
154     "@chemzqm/tsconfig": "^0.0.3",
155     "@chemzqm/tslint-config": "^1.0.18",
156     "@types/eslint": "^4.16.6",
157     "@types/fast-diff": "^1.2.0",
158     "@types/node": "^12.0.7",
159     "coc.nvim": "0.0.65",
160     "rimraf": "^2.6.3",
161     "tslint": "^5.17.0",
162     "typescript": "^3.5.1"
163   },
164   "dependencies": {}
165 }