X-Git-Url: https://git.josue.xyz/?a=blobdiff_plain;ds=sidebyside;f=.config%2Fcoc%2Fextensions%2Fnode_modules%2Fcoc-eslint%2Fpackage.json;fp=.config%2Fcoc%2Fextensions%2Fnode_modules%2Fcoc-eslint%2Fpackage.json;h=0000000000000000000000000000000000000000;hb=3ddadb3c98564791f0ac36cb39771d844a63dc91;hp=ff7210cba7220614b82afd423769efe2eda85692;hpb=5f797af6612ed10887189b47a1efc2f915586e59;p=dotfiles%2F.git diff --git a/.config/coc/extensions/node_modules/coc-eslint/package.json b/.config/coc/extensions/node_modules/coc-eslint/package.json deleted file mode 100644 index ff7210cb..00000000 --- a/.config/coc/extensions/node_modules/coc-eslint/package.json +++ /dev/null @@ -1,203 +0,0 @@ -{ - "name": "coc-eslint", - "version": "1.3.2", - "description": "eslint extension for coc", - "main": "lib/index.js", - "publisher": "chemzqm", - "keywords": [ - "coc.nvim", - "eslint" - ], - "engines": { - "coc": "^0.0.64" - }, - "scripts": { - "clean": "rimraf lib", - "build": "webpack", - "prepare": "npx npm-run-all clean build" - }, - "activationEvents": [ - "*" - ], - "contributes": { - "commands": [ - { - "title": "Fix all auto-fixable problems", - "category": "ESLint", - "command": "eslint.executeAutofix" - }, - { - "title": "Create a '.eslintrc' config file", - "category": "ESLint", - "command": "eslint.createConfig" - } - ], - "configuration": { - "type": "object", - "title": "Eslint", - "properties": { - "eslint.enable": { - "type": "boolean", - "default": true, - "description": "enable lint for files." - }, - "eslint.quiet": { - "type": "boolean", - "default": false, - "description": "Turns on quiet mode, which ignores warnings." - }, - "eslint.nodeEnv": { - "type": [ - "string", - "null" - ], - "default": null, - "description": "The value of NODE_ENV to use when running eslint tasks." - }, - "eslint.trace.server": { - "type": "string", - "default": "off", - "enum": [ - "off", - "messages", - "verbose" - ] - }, - "eslint.execArgv": { - "type": "array", - "default": [], - "items": { - "type": "string" - } - }, - "eslint.filetypes": { - "type": "array", - "default": [ - "javascript", - "javascriptreact", - "typescript", - "typescriptreact" - ], - "items": { - "type": "string" - } - }, - "eslint.packageManager": { - "type": "string", - "default": "npm", - "enum": [ - "npm", - "yarn" - ] - }, - "eslint.run": { - "type": "string", - "default": "onType", - "enum": [ - "onType", - "onSave" - ] - }, - "eslint.runtime": { - "type": [ - "string", - "null" - ], - "default": null, - "description": "The location of the node binary to run ESLint under." - }, - "eslint.nodePath": { - "type": [ - "string", - "null" - ], - "default": null, - "description": "A path added to NODE_PATH when resolving the eslint module." - }, - "eslint.autoFix": { - "type": "boolean", - "default": true, - "description": "Enable auto fix feature" - }, - "eslint.options": { - "scope": "resource", - "type": "object", - "default": {}, - "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)." - }, - "eslint.autoFixOnSave": { - "type": "boolean", - "default": false - }, - "eslint.autoFixSkipRules": { - "type": "array", - "items": { - "type": "string" - }, - "default": [], - "description": "Rules that should be skipped when autofixing." - }, - "eslint.codeAction.disableRuleComment": { - "scope": "resource", - "type": "object", - "default": { - "enable": true, - "location": "separateLine" - }, - "properties": { - "enable": { - "type": "boolean", - "default": true, - "description": "Show the disable code actions." - }, - "location": { - "type": "string", - "enum": [ - "separateLine", - "sameLine" - ], - "default": "separateLine", - "description": "Configure the disable rule code action to insert the comment on the same line or a new line." - } - } - }, - "eslint.codeAction.showDocumentation": { - "scope": "resource", - "type": "object", - "default": { - "enable": true - }, - "properties": { - "enable": { - "type": "boolean", - "default": true, - "description": "Show the documentation code actions." - } - } - } - } - } - }, - "author": "chemzqm@gmail.com", - "license": "MIT", - "devDependencies": { - "@chemzqm/tsconfig": "^0.0.3", - "@types/eslint": "^7.2.2", - "@types/fast-diff": "^1.2.0", - "@types/node": "^10.12.0", - "coc.nvim": "0.0.79", - "eslint": "^7.9.0", - "fast-diff": "^1.2.0", - "rimraf": "^3.0.0", - "ts-loader": "^6.2.1", - "typescript": "^3.7.4", - "vscode-languageserver": "^6.1.1", - "vscode-languageserver-protocol": "3.15.3", - "vscode-languageserver-textdocument": "^1.0.0", - "vscode-uri": "^2.1.1", - "webpack": "^4.41.5", - "webpack-cli": "^3.3.10", - "which": "^2.0.2" - }, - "dependencies": {} -}