Compare commits

..
15 Commits
Author SHA1 Message Date
root c9b39ffca0 fix: release
continuous-integration/drone/tag Build is passing
2026-07-14 23:26:30 +00:00
m.schnitzlerandroot 0ddeb439ee renovate (#186)
Co-authored-by: m.schnitzler <martin.wb.2015@gmail.com>
2026-07-14 23:26:21 +00:00
root 5316114dae feature: sweep flotte (chantiers en cours: canon UI/forms/zod/openapi, dates dayjs, scrollrestoration, conformites migration)
continuous-integration/drone/tag Build is passing
2026-07-14 00:41:40 +02:00
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
root 8908a32a68 feature: sweep flotte (propagation libs copy-first model/monitoring/requestPromise/influxdb, config eslint/lintstaged/husky, migration TS, avancement conformite migrations Vite)
continuous-integration/drone/tag Build is passing
2026-06-24 00:28:06 +02:00
7 changed files with 596 additions and 639 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
+1
View File
@@ -33,3 +33,4 @@ data/
/dist/
tsconfig.tsbuildinfo
.twig-cs-fixer.cache
testfront-screenshots/
+2 -1
View File
@@ -1,8 +1,9 @@
{
"*.js": ["eslint --fix", "prettier --write"],
"*.ts": ["eslint --fix", "prettier --write"],
"*.css": ["prettier --write"],
"*.jsx": ["prettier --write"],
"*.html.twig": ["twig-cs-fixer lint --fix"],
"*.tsx": ["prettier --write"],
"*.php": ["php-cs-fixer fix --config .php-cs-fixer.php"],
"Dockerfile": ["hadolint --ignore DL3002 --ignore DL3003 --ignore DL3008 --ignore DL3013 --ignore DL3016 --ignore DL3022"],
"*.md": ["markdownlint --fix"],
+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'],
+581 -625
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.4.0",
"version": "1.7.1",
"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.64.0",
"@typescript-eslint/parser": "^8.64.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
}
}