Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/neotan/vscode-auto-restart-typescript-eslint-servers
Restart TypeScript and ESLint servers automatically if monitored configuration or files changed.
https://github.com/neotan/vscode-auto-restart-typescript-eslint-servers
Last synced: 2 months ago
JSON representation
Restart TypeScript and ESLint servers automatically if monitored configuration or files changed.
- Host: GitHub
- URL: https://github.com/neotan/vscode-auto-restart-typescript-eslint-servers
- Owner: neotan
- License: mit
- Created: 2023-01-07T18:15:34.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2024-09-03T14:25:36.000Z (4 months ago)
- Last Synced: 2024-10-12T11:04:06.946Z (3 months ago)
- Language: TypeScript
- Homepage: https://marketplace.visualstudio.com/items?itemName=neotan.vscode-auto-restart-typescript-eslint-servers
- Size: 1.91 MB
- Stars: 27
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# vscode-auto-restart-typescript-eslint-servers
Restart TypeScript or ESLint server automatically if monitored configuration or files changed.
## VS Code Marketplace:
https://marketplace.visualstudio.com/items?itemName=neotan.vscode-auto-restart-typescript-eslint-servers## Features
- Restart TypeScript and ESLint servers automatically
- Enable/Disable file monitoring## Development Setup
### 1. Clone the Repository
Clone the repository using the command:```bash
git clone https://github.com/neotan/vscode-auto-restart-typescript-eslint-servers
```### 2. Install Dependencies
Navigate to the repository folder:
```bash
cd vscode-auto-restart-typescript-eslint-servers
```
Install the required dependencies:
```bash
npm install
```### 3. Update Code or Configuration
Make necessary changes to the code or configuration files as needed.### 4. Package the Extension
Run the following command to generate the `.vsix` package:
```bash
npm run package
```### 5. Install the Extension
Install the extension to your VSCode using:
```bash
npm run install-vsix
```### 6. Verify Installation
Open VSCode, navigate to the `Extensions` tab in the sidebar, and search for `neotan.vscode-auto-restart-typescript-eslint-servers` to ensure the extension is installed correctly.### 7. Test the Extension
You can now test the functionality of the extension within VSCode.
> Note⚠: Once you published the new version to the marketplace, remember uninstall the development version so you can actually use the published one.## Credits
* [vscode-restart-ts-server-button](https://github.com/qcz/vscode-restart-ts-server-button) by [Qcz](github.com/qcz)
* [vscode-eslint](https://github.com/microsoft/vscode-eslint) by [Microsoft](github.com/microsoft)