Skip to content

Commit

Permalink
Merge pull request #1 from RSIP-Vision:dev/to-auto-config
Browse files Browse the repository at this point in the history
update code to use vscode-extensions-json-generator
  • Loading branch information
elazarcoh committed Sep 27, 2021
2 parents 43775cf + bf2595d commit f5c592f
Show file tree
Hide file tree
Showing 15 changed files with 3,138 additions and 2,311 deletions.
25 changes: 14 additions & 11 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,18 @@
"plugins": [
"@typescript-eslint"
],
"extends": [
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended"
],
"rules": {
"@typescript-eslint/naming-convention": "warn",
"@typescript-eslint/semi": "warn",
"curly": "warn",
"eqeqeq": "warn",
"no-throw-literal": "warn",
"semi": "off"
},
"ignorePatterns": [
"**/*.d.ts"
]
}
"@typescript-eslint/no-unused-vars": [
"warn",
{
"argsIgnorePattern": "^_",
"varsIgnorePattern": "^_"
}
],
"@typescript-eslint/no-inferrable-types": "off"
}
}
3 changes: 2 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,6 @@
"typescript.tsc.autoDetect": "off",
"cSpell.words": [
"treeview"
]
],
"npm.packageManager": "yarn"
}
12 changes: 11 additions & 1 deletion .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,20 @@
"presentation": {
"reveal": "never"
},
"group": "build",
"label": "npm: watch",
"detail": "webpack --mode development --watch"
},
{
"type": "npm",
"script": "build",
"group": {
"kind": "build",
"isDefault": true
}
},
"problemMatcher": [],
"label": "npm: build",
"detail": "webpack --mode development"
}
]
}
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ Provides a view on Nvidia's GPUs. It utilize the `nvidia-smi` tool to extract th
* Highly customizable
* Automatic refresh (optionally)

Note: this extension has no affiliation with the Nvidia corp.

## Available information fields:

* `product_name`: displays the Product name
Expand Down
Binary file added icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit f5c592f

Please sign in to comment.