Compare commits
80 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 1781912d3f | |||
| 2a494213ff | |||
| 9cc4bb48fc | |||
| f67562c8ac | |||
| e4682d493e | |||
| e4afa91517 | |||
| 9b8134441c | |||
| d16bc0a1ef | |||
| 3a54763a53 | |||
| 81177f27ce | |||
| f1e5244ee2 | |||
| e30bdcd6cf | |||
| 0615d39c61 | |||
| d3bb430a98 | |||
| 3eac7da736 | |||
| 1f16dcdbf0 | |||
| fe433ad929 | |||
| 96c172c1ff | |||
| 6fd2ba027c | |||
| 85d50e183f | |||
| aa3fd27451 | |||
| c15d443595 | |||
| cdc9e40d0b | |||
| e3fd433c9b | |||
| 3969b22310 | |||
| 58ff5ccc5a | |||
| 74533cc9b9 | |||
| 0cd8d6c0d1 | |||
| 7a654ffad8 | |||
| 703225acdd | |||
| 8c3b9f0ca6 | |||
| 0b40b2dee8 | |||
| afe65f5e34 | |||
| fa14e6fbfe | |||
| 7968d84047 | |||
| a2fe9e239a | |||
| a6f849d0f5 | |||
| 4869be90b8 | |||
| ddca7cc92e | |||
| 12fc16e71f | |||
| d8014e94b8 | |||
| 54d05237ed | |||
| 60037aec07 | |||
| 8378fe9eb1 | |||
| 8acbc35562 | |||
| 30deaa961b | |||
| 0d120cd51d | |||
| 86213539f7 | |||
| 94b921fbe2 | |||
| f62b4b7804 | |||
| be89eda130 | |||
| 79d2d781b0 | |||
| 3619d3375e | |||
| 70a942faee | |||
| 4c3ff7c1bb | |||
| 00e78de6f3 | |||
| 0eba2547cc | |||
| febfec0e36 | |||
| c191899971 | |||
| a87e823a9c | |||
| 5f1232e8b8 | |||
| c5bdfe13fa | |||
| d8f6796249 | |||
| 5610154ff9 | |||
| 669abfb38a | |||
| 124154e4e9 | |||
| 545a9ff9f3 | |||
| 57d5804a33 | |||
| 675c64368a | |||
| b1191ffae5 | |||
| e4ac2ed95f | |||
| d784c1cb79 | |||
| ced70cee93 | |||
| b54472aa93 | |||
| fddc5b7c89 | |||
| 195da823b1 | |||
| 2685146634 | |||
| 39aced4f8e | |||
| 56463f999d | |||
| bfbe69fb14 |
@@ -1,6 +1,13 @@
|
|||||||
kind: pipeline
|
kind: pipeline
|
||||||
|
type: ssh
|
||||||
name: default
|
name: default
|
||||||
|
|
||||||
|
server:
|
||||||
|
host: build.gextra.net
|
||||||
|
user: root
|
||||||
|
ssh_key:
|
||||||
|
from_secret: ssh_key_secret
|
||||||
|
|
||||||
trigger:
|
trigger:
|
||||||
event:
|
event:
|
||||||
- tag
|
- tag
|
||||||
|
|||||||
@@ -1,30 +0,0 @@
|
|||||||
{
|
|
||||||
"root": true,
|
|
||||||
"parser": "@typescript-eslint/parser",
|
|
||||||
"parserOptions": {
|
|
||||||
"ecmaVersion": 6,
|
|
||||||
"sourceType": "module"
|
|
||||||
},
|
|
||||||
"plugins": [
|
|
||||||
"@typescript-eslint"
|
|
||||||
],
|
|
||||||
"rules": {
|
|
||||||
"@typescript-eslint/naming-convention": [
|
|
||||||
"warn",
|
|
||||||
{
|
|
||||||
"selector": "import",
|
|
||||||
"format": [ "camelCase", "PascalCase" ]
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"@typescript-eslint/semi": "warn",
|
|
||||||
"curly": "warn",
|
|
||||||
"eqeqeq": "warn",
|
|
||||||
"no-throw-literal": "warn",
|
|
||||||
"semi": "off"
|
|
||||||
},
|
|
||||||
"ignorePatterns": [
|
|
||||||
"out",
|
|
||||||
"dist",
|
|
||||||
"**/*.d.ts"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
66
eslint.config.js
Normal file
66
eslint.config.js
Normal file
@@ -0,0 +1,66 @@
|
|||||||
|
import js from '@eslint/js';
|
||||||
|
import tsparser from '@typescript-eslint/parser';
|
||||||
|
import tsplugin from '@typescript-eslint/eslint-plugin';
|
||||||
|
import globals from 'globals';
|
||||||
|
|
||||||
|
export default [
|
||||||
|
js.configs.recommended,
|
||||||
|
{
|
||||||
|
files: ['**/*.ts'],
|
||||||
|
languageOptions: {
|
||||||
|
parser: tsparser,
|
||||||
|
parserOptions: {
|
||||||
|
ecmaVersion: 6,
|
||||||
|
sourceType: 'module',
|
||||||
|
},
|
||||||
|
globals: {
|
||||||
|
...globals.browser,
|
||||||
|
...globals.node,
|
||||||
|
...globals.mocha,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
plugins: {
|
||||||
|
'@typescript-eslint': tsplugin,
|
||||||
|
},
|
||||||
|
rules: {
|
||||||
|
'@typescript-eslint/naming-convention': [
|
||||||
|
'warn',
|
||||||
|
{
|
||||||
|
selector: 'import',
|
||||||
|
format: ['camelCase', 'PascalCase'],
|
||||||
|
},
|
||||||
|
],
|
||||||
|
'curly': 'warn',
|
||||||
|
'eqeqeq': 'warn',
|
||||||
|
'no-throw-literal': 'warn',
|
||||||
|
'semi': 'off',
|
||||||
|
// Règles générales réutilisées de flatbay
|
||||||
|
'prefer-const': ['error', { destructuring: 'all' }],
|
||||||
|
'no-var': 'error',
|
||||||
|
'object-shorthand': ['error', 'properties'],
|
||||||
|
'prefer-template': 'error',
|
||||||
|
'dot-notation': 'error',
|
||||||
|
'no-unused-expressions': 'error',
|
||||||
|
'no-nested-ternary': 'error',
|
||||||
|
'one-var-declaration-per-line': ['error', 'always'],
|
||||||
|
'one-var': ['error', 'never'],
|
||||||
|
'vars-on-top': 'error',
|
||||||
|
'yoda': 'error',
|
||||||
|
'prefer-arrow-callback': 'error',
|
||||||
|
'no-implicit-globals': 'error',
|
||||||
|
'no-labels': 'error',
|
||||||
|
'no-new-func': 'error',
|
||||||
|
'no-script-url': 'error',
|
||||||
|
'no-sequences': 'error',
|
||||||
|
'no-unused-labels': 'error',
|
||||||
|
'prefer-spread': 'error',
|
||||||
|
'no-console': 0, // Garder les console.log pour debug
|
||||||
|
'no-empty': 0,
|
||||||
|
'no-redeclare': 0,
|
||||||
|
'no-useless-escape': 0,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
ignores: ['out/', 'dist/', '**/*.d.ts'],
|
||||||
|
},
|
||||||
|
];
|
||||||
754
package-lock.json
generated
754
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
20
package.json
20
package.json
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "vscodestat",
|
"name": "vscodestat",
|
||||||
"displayName": "vscodestat",
|
"displayName": "vscodestat",
|
||||||
"version": "1.1.105",
|
"version": "1.1.143",
|
||||||
"description": "",
|
"description": "",
|
||||||
"categories": [
|
"categories": [
|
||||||
"Other"
|
"Other"
|
||||||
@@ -12,6 +12,7 @@
|
|||||||
},
|
},
|
||||||
"license": "ISC",
|
"license": "ISC",
|
||||||
"author": "Raphael Piccolo",
|
"author": "Raphael Piccolo",
|
||||||
|
"type": "module",
|
||||||
"main": "./out/extension.js",
|
"main": "./out/extension.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"compile": "tsc -p ./",
|
"compile": "tsc -p ./",
|
||||||
@@ -52,17 +53,18 @@
|
|||||||
],
|
],
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@types/mocha": "^10.0.10",
|
"@types/mocha": "^10.0.10",
|
||||||
"@types/node": "24.x",
|
"@types/node": "25.x",
|
||||||
"@types/vscode": "^1.102.0",
|
"@types/vscode": "^1.109.0",
|
||||||
"@typescript-eslint/eslint-plugin": "^8.39.0",
|
"@typescript-eslint/eslint-plugin": "^8.54.0",
|
||||||
"@typescript-eslint/parser": "^8.39.0",
|
"@typescript-eslint/parser": "^8.54.0",
|
||||||
"@vscode/test-cli": "^0.0.11",
|
"@vscode/test-cli": "^0.0.12",
|
||||||
"@vscode/test-electron": "^2.5.2",
|
"@vscode/test-electron": "^2.5.2",
|
||||||
"eslint": "^9.33.0",
|
"eslint": "^9.39.2",
|
||||||
"typescript": "^5.9.2"
|
"ts-api-utils": "^2.4.0",
|
||||||
|
"typescript": "^5.9.3"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"vscode": "^1.102.0"
|
"vscode": "^1.109.0"
|
||||||
},
|
},
|
||||||
"icon": "icon.png",
|
"icon": "icon.png",
|
||||||
"extensionKind": [
|
"extensionKind": [
|
||||||
|
|||||||
@@ -4,13 +4,13 @@ export function activate(context: vscode.ExtensionContext) {
|
|||||||
console.log('Congratulations, your extension "vscodestat" is now active!');
|
console.log('Congratulations, your extension "vscodestat" is now active!');
|
||||||
|
|
||||||
// crée une commande de test
|
// crée une commande de test
|
||||||
let disposable = vscode.commands.registerCommand('vscodestat.helloWorld', () => {
|
const disposable = vscode.commands.registerCommand('vscodestat.helloWorld', () => {
|
||||||
vscode.window.showInformationMessage('Hello World from vscodestat!');
|
vscode.window.showInformationMessage('Hello World from vscodestat!');
|
||||||
});
|
});
|
||||||
context.subscriptions.push(disposable);
|
context.subscriptions.push(disposable);
|
||||||
|
|
||||||
// commande pour definir l'url
|
// commande pour definir l'url
|
||||||
let disposable2 = vscode.commands.registerCommand('vscodestat.setUrl', async () => {
|
const disposable2 = vscode.commands.registerCommand('vscodestat.setUrl', async () => {
|
||||||
const url = await vscode.window.showInputBox({
|
const url = await vscode.window.showInputBox({
|
||||||
prompt: 'Enter the URL:',
|
prompt: 'Enter the URL:',
|
||||||
placeHolder: ''
|
placeHolder: ''
|
||||||
@@ -24,7 +24,7 @@ export function activate(context: vscode.ExtensionContext) {
|
|||||||
context.subscriptions.push(disposable2);
|
context.subscriptions.push(disposable2);
|
||||||
|
|
||||||
// commande pour tester l'url
|
// commande pour tester l'url
|
||||||
let disposable3 = vscode.commands.registerCommand('vscodestat.callUrl', async () => {
|
const disposable3 = vscode.commands.registerCommand('vscodestat.callUrl', async () => {
|
||||||
const storedUrl = vscode.workspace.getConfiguration().get('vscodestat.url') as string;
|
const storedUrl = vscode.workspace.getConfiguration().get('vscodestat.url') as string;
|
||||||
if (!storedUrl) {
|
if (!storedUrl) {
|
||||||
vscode.window.showWarningMessage('URL is not set. Please set the URL first.');
|
vscode.window.showWarningMessage('URL is not set. Please set the URL first.');
|
||||||
|
|||||||
Reference in New Issue
Block a user