prepare 5.3.1 (#192)
This commit is contained in:
Родитель
2470e27a83
Коммит
d48091bcb3
|
@ -1,5 +0,0 @@
|
|||
indent_style = tab
|
||||
indent_size = 2
|
||||
|
||||
[*.json]
|
||||
indent_style = space
|
|
@ -0,0 +1,28 @@
|
|||
import typescriptEslint from "@typescript-eslint/eslint-plugin";
|
||||
import tsParser from "@typescript-eslint/parser";
|
||||
|
||||
export default [{
|
||||
files: ["**/*.ts"],
|
||||
|
||||
plugins: {
|
||||
"@typescript-eslint": typescriptEslint,
|
||||
},
|
||||
|
||||
languageOptions: {
|
||||
parser: tsParser,
|
||||
ecmaVersion: 6,
|
||||
sourceType: "module",
|
||||
},
|
||||
|
||||
rules: {
|
||||
"@typescript-eslint/naming-convention": ["warn", {
|
||||
selector: "typeLike",
|
||||
format: ["PascalCase"],
|
||||
}],
|
||||
|
||||
curly: "warn",
|
||||
eqeqeq: "warn",
|
||||
"no-throw-literal": "warn",
|
||||
semi: "off",
|
||||
},
|
||||
}];
|
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
16
package.json
16
package.json
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "vscode-html-languageservice",
|
||||
"version": "5.3.0",
|
||||
"version": "5.3.1",
|
||||
"description": "Language service for HTML",
|
||||
"main": "./lib/umd/htmlLanguageService.js",
|
||||
"typings": "./lib/umd/htmlLanguageService",
|
||||
|
@ -17,18 +17,18 @@
|
|||
"devDependencies": {
|
||||
"@types/mocha": "^10.0.7",
|
||||
"@types/node": "18.x",
|
||||
"@typescript-eslint/eslint-plugin": "^7.13.1",
|
||||
"@typescript-eslint/parser": "^7.13.1",
|
||||
"@typescript-eslint/eslint-plugin": "^8.3.0",
|
||||
"@typescript-eslint/parser": "^8.3.0",
|
||||
"@vscode/web-custom-data": "^0.4.11",
|
||||
"eslint": "^8.57.0",
|
||||
"eslint": "^9.9.1",
|
||||
"js-beautify": "^1.15.1",
|
||||
"mocha": "^10.4.0",
|
||||
"rimraf": "^5.0.7",
|
||||
"typescript": "5.4.5"
|
||||
"mocha": "^10.7.3",
|
||||
"rimraf": "^6.0.1",
|
||||
"typescript": "5.5.4"
|
||||
},
|
||||
"dependencies": {
|
||||
"@vscode/l10n": "^0.0.18",
|
||||
"vscode-languageserver-textdocument": "^1.0.11",
|
||||
"vscode-languageserver-textdocument": "^1.0.12",
|
||||
"vscode-languageserver-types": "^3.17.5",
|
||||
"vscode-uri": "^3.0.8"
|
||||
},
|
||||
|
|
Загрузка…
Ссылка в новой задаче