Compare commits

..
11 Commits
Author SHA1 Message Date
root edb296c6e8 fix: release
continuous-integration/drone/tag Build is passing
2026-07-10 23:35:04 +00:00
m.schnitzlerandroot 143eff95bc renovate (#185)
Co-authored-by: m.schnitzler <martin.wb.2015@gmail.com>
Co-committed-by: m.schnitzler <martin.wb.2015@gmail.com>
2026-07-10 23:34:53 +00:00
root ce7dd93de5 fix: release
continuous-integration/drone/tag Build is passing
2026-07-09 03:35:35 +00:00
m.schnitzlerandroot f250f48788 renovate (#184)
Co-authored-by: m.schnitzler <martin.wb.2015@gmail.com>
Co-committed-by: m.schnitzler <martin.wb.2015@gmail.com>
2026-07-09 03:35:09 +00:00
root 840564fc69 fix: release
continuous-integration/drone/tag Build is pending
2026-07-01 02:08:32 +00:00
m.schnitzlerandroot a7086bdaf6 renovate (#183)
Co-authored-by: m.schnitzler <martin.wb.2015@gmail.com>
Co-committed-by: m.schnitzler <martin.wb.2015@gmail.com>
2026-07-01 02:07:21 +00:00
root 6ec43bf622 fix: release
continuous-integration/drone/tag Build is passing
2026-06-30 23:37:06 +00:00
m.schnitzlerandroot 73494bf805 renovatemajor (#182)
Co-authored-by: m.schnitzler <martin.wb.2015@gmail.com>
Co-committed-by: m.schnitzler <martin.wb.2015@gmail.com>
2026-06-30 23:36:47 +00:00
root 94b058a6e7 feature: lance les tests (xvfb-run npm test) dans la CI Drone avant le packaging vsix
continuous-integration/drone/tag Build is passing
2026-06-25 22:30:24 +02:00
root a896a8e7fc fix: nettoyage commentaires boilerplate yo-code dans tsconfig (JSON strict valide) 2026-06-25 22:14:56 +02:00
root a05d2218c6 fix: eslint reportUnusedDisableDirectives error (sweep flotte) + nettoyage
continuous-integration/drone/tag Build is passing
2026-06-25 00:25:49 +02:00
5 changed files with 590 additions and 635 deletions
+1
View File
@@ -18,6 +18,7 @@ steps:
commands:
- npm install -g vsce
- npm ci
- xvfb-run -a npm test
- vsce package
- name: gitea_release
+2
View File
@@ -4,6 +4,8 @@ import tsplugin from '@typescript-eslint/eslint-plugin';
import globals from 'globals';
export default [
// remonte (et --fix supprime) tout eslint-disable inutile : regle deja off, inactive, ou qui ne tire pas
{ linterOptions: { reportUnusedDisableDirectives: 'error' } },
js.configs.recommended,
{
files: ['**/*.ts'],
+578 -622
View File
File diff suppressed because it is too large Load Diff
+8 -8
View File
@@ -1,7 +1,7 @@
{
"name": "vscodestat",
"displayName": "vscodestat",
"version": "1.5.0",
"version": "1.6.4",
"description": "",
"categories": [
"Other"
@@ -51,17 +51,17 @@
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/mocha": "^10.0.10",
"@types/node": "25.x",
"@types/node": "26.x",
"@types/vscode": "^1.125.0",
"@typescript-eslint/eslint-plugin": "^8.61.1",
"@typescript-eslint/parser": "^8.61.1",
"@vscode/test-cli": "^0.0.12",
"@typescript-eslint/eslint-plugin": "^8.63.0",
"@typescript-eslint/parser": "^8.63.0",
"@vscode/test-cli": "^0.0.15",
"@vscode/test-electron": "^3.0.0",
"eslint": "^10.1.0",
"globals": "^17.6.0",
"globals": "^17.7.0",
"husky": "^9.1.7",
"lint-staged": "^17.0.7",
"prettier": "^3.8.4",
"lint-staged": "^17.0.8",
"prettier": "^3.9.5",
"ts-api-utils": "^2.5.0",
"typescript": "^6.0.3"
},
+1 -5
View File
@@ -13,10 +13,6 @@
],
"sourceMap": true,
"rootDir": "src",
"strict": true /* enable all strict type-checking options */
/* Additional Checks */
// "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */
// "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */
// "noUnusedParameters": true, /* Report errors on unused parameters. */
"strict": true
}
}