Skip to content

Commit e6474dc

Browse files
committed
Expose configuration key for semicolon occurrence
- Adds extension main module - Bumps VS Code engine version - Lists activation events - Adds configuration object - Deletes unknown 'vue' language identifier - Updates extension display name and description
1 parent a761d37 commit e6474dc

15 files changed

+3842
-194
lines changed

.eslintrc.js

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
module.exports = {
2+
env: {
3+
es6: true,
4+
node: true,
5+
},
6+
extends: 'eslint:recommended',
7+
rules: {
8+
quotes: ['error', 'single'],
9+
semi: ['error', 'always'],
10+
'no-console': ['error', { allow: ['warn', 'error'] }],
11+
},
12+
};

.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Normalize line endings to LF
2+
* text=auto

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ publish/
129129
# Publish Web Output
130130
*.[Pp]ublish.xml
131131
*.azurePubxml
132-
# TODO: Comment the next line if you want to checkin your web deploy settings
132+
# TODO: Comment the next line if you want to checkin your web deploy settings
133133
# but database connection strings (with potential passwords) will be unencrypted
134134
*.pubxml
135135
*.publishproj
@@ -194,3 +194,6 @@ FakesAssemblies/
194194

195195
# Visual Studio 6 workspace options file
196196
*.opt
197+
198+
*.vsix
199+
snippets/snippets.json

.prettierrc

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"singleQuote": true,
3+
"trailingComma": "es5",
4+
"semi": true
5+
}

.vscode/launch.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"version": "0.1.0",
3+
"configurations": [
4+
{
5+
"name": "Launch Extension",
6+
"type": "extensionHost",
7+
"request": "launch",
8+
"runtimeExecutable": "${execPath}",
9+
"args": ["--extensionDevelopmentPath=${workspaceRoot}"],
10+
"stopOnEntry": false,
11+
"preLaunchTask": "clean"
12+
}
13+
]
14+
}

.vscode/tasks.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"label": "clean",
6+
"type": "npm",
7+
"script": "clean",
8+
"presentation": {
9+
"echo": true,
10+
"reveal": "never",
11+
"focus": false,
12+
"panel": "shared"
13+
},
14+
"problemMatcher": []
15+
}
16+
]
17+
}

.vscodeignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
.gitignore
22
LICENSE
33
CHANGELOG.md
4+
.vscode/**

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
[![Installs](https://vsmarketplacebadge.apphb.com/installs/xabikos.JavaScriptSnippets.svg)](https://marketplace.visualstudio.com/items?itemName=xabikos.JavaScriptSnippets)
77
[![Ratings](https://vsmarketplacebadge.apphb.com/rating/xabikos.JavaScriptSnippets.svg)](https://marketplace.visualstudio.com/items?itemName=xabikos.JavaScriptSnippets)
88

9-
This extension contains code snippets for JavaScript in ES6 syntax for [Vs Code][code] editor (supports both JavaScript and TypeScript).
9+
This extension contains code snippets for JavaScript in ES6 syntax for [VS Code][code] editor (supports both JavaScript and TypeScript).
1010

1111
## Installation
1212

@@ -19,7 +19,6 @@ There you have either the option to show the already installed snippets or insta
1919
* JavaScript React (.jsx)
2020
* TypeScript React (.tsx)
2121
* Html (.html)
22-
* Vue (.vue)
2322

2423
## Snippets
2524

jsconfig.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"exclude": [
3+
"node_modules"
4+
]
5+
}

0 commit comments

Comments
 (0)