Skip to content

Commit 8c058e8

Browse files
first commit
0 parents  commit 8c058e8

16 files changed

+6094
-0
lines changed

.gitignore

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
# Node.js dependencies
2+
node_modules/
3+
*.log
4+
5+
# VS Code specific settings
6+
.vscode/
7+
8+
# VS Code Extension output
9+
*.vsix
10+
11+
# MacOS system files
12+
.DS_Store
13+
14+
# Windows system files
15+
Thumbs.db
16+
ehthumbs.db
17+
18+
# Logs
19+
npm-debug.log*
20+
yarn-debug.log*
21+
yarn-error.log*
22+
pnpm-debug.log*
23+
24+
# Editor files
25+
*.swp
26+
*.swo
27+
*~
28+
29+
# Environment files
30+
.env
31+
.env.local
32+
.env.development.local
33+
.env.test.local
34+
.env.production.local
35+
36+
# Other generated files
37+
coverage/
38+
dist/
39+
out/
40+
temp/

.vscode-test.mjs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import { defineConfig } from '@vscode/test-cli';
2+
3+
export default defineConfig({
4+
files: 'out/test/**/*.test.js',
5+
});

.vscodeignore

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
.vscode/**
2+
.vscode-test/**
3+
out/**
4+
node_modules/**
5+
src/**
6+
.gitignore
7+
.yarnrc
8+
webpack.config.js
9+
vsc-extension-quickstart.md
10+
**/tsconfig.json
11+
**/eslint.config.mjs
12+
**/*.map
13+
**/*.ts
14+
**/.vscode-test.*

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Change Log
2+
3+
All notable changes to the "auto-closing-tags" extension will be documented in this file.
4+
5+
Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file.
6+
7+
## [Unreleased]
8+
9+
- Initial release

CONTRIBUTING.md

Whitespace-only changes.

LICENSE.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2025 (Codegyan LLC) Prathmesh Yelne
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
# Auto Closing Tags
2+
3+
**Auto Closing Tags** is a Visual Studio Code extension that automatically inserts closing tags for multiple programming and markup languages. This extension enhances your coding efficiency by reducing the time spent on manually typing closing tags.
4+
5+
## Features
6+
7+
- Automatically closes tags for a variety of languages, including HTML, XML, PHP, JavaScript, TypeScript, Vue, and more.
8+
- Supports popular templating languages like Blade, EJS, Jinja, and Liquid.
9+
- Lightweight and easy to use, with no additional configuration required.
10+
11+
## Supported Languages
12+
13+
- HTML
14+
- XML
15+
- PHP
16+
- Blade
17+
- EJS
18+
- Jinja
19+
- JavaScript
20+
- JavaScript React (JSX)
21+
- TypeScript
22+
- TypeScript React (TSX)
23+
- Plaintext
24+
- Markdown
25+
- Vue
26+
- Liquid
27+
- ERB
28+
- CFML
29+
- Python
30+
- And more...
31+
32+
## Installation
33+
34+
1. **Install from VSIX**:
35+
- Download the latest `.vsix` package from the [Releases](#) page.
36+
- Open Visual Studio Code.
37+
- Go to the Extensions view by clicking on the Extensions icon in the Activity Bar or pressing `Ctrl+Shift+X`.
38+
- Click on the ellipsis (`...`) in the top-right corner of the Extensions view and select "Install from VSIX...".
39+
- Navigate to the downloaded `.vsix` file and select it to install.
40+
41+
2. **Install from Marketplace** :
42+
- Open Visual Studio Code.
43+
- Go to the Extensions view by clicking on the Extensions icon in the Activity Bar or pressing `Ctrl+Shift+X`.
44+
- Search for "Auto Closing Tags".
45+
- Click "Install" to add the extension to your VS Code.
46+
47+
## Usage
48+
49+
1. Open a file in one of the supported languages.
50+
2. Start typing an opening tag (e.g., `<div>`).
51+
3. The extension will automatically insert the corresponding closing tag (e.g., `</div>`).
52+
53+
## Contributing
54+
55+
Contributions are welcome! If you have suggestions for improvements or new features, feel free to open an issue or submit a pull request on the Github.
56+
57+
## License
58+
59+
This extension is licensed under the **[MIT license](https://opensource.org/licenses/MIT)**..
60+
61+
## Contact
62+
63+
For questions or feedback, please contact support@codegyan.in.
64+
65+
---
66+
67+
Thank you for using **Auto Closing Tags**! We hope it enhances your coding experience.

eslint.config.mjs

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
import typescriptEslint from "@typescript-eslint/eslint-plugin";
2+
import tsParser from "@typescript-eslint/parser";
3+
4+
export default [{
5+
files: ["**/*.ts"],
6+
}, {
7+
plugins: {
8+
"@typescript-eslint": typescriptEslint,
9+
},
10+
11+
languageOptions: {
12+
parser: tsParser,
13+
ecmaVersion: 2022,
14+
sourceType: "module",
15+
},
16+
17+
rules: {
18+
"@typescript-eslint/naming-convention": ["warn", {
19+
selector: "import",
20+
format: ["camelCase", "PascalCase"],
21+
}],
22+
23+
curly: "warn",
24+
eqeqeq: "warn",
25+
"no-throw-literal": "warn",
26+
semi: "warn",
27+
},
28+
}];

images/icon.png

29.5 KB
Loading

0 commit comments

Comments
 (0)