Skip to content

Commit 2d8a41e

Browse files
committed
feat: 🎉 initial commit
0 parents  commit 2d8a41e

17 files changed

+8390
-0
lines changed

.commitlintrc.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{ "extends": ["@commitlint/config-conventional"] }

.eslintignore

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
node_modules
2+
.next
3+
.cache
4+
build
5+
public
6+
dist
7+
coverage
8+
package.json
9+
package-lock.json
10+
yarn.lock

.eslintrc.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"env": {
3+
"browser": true,
4+
"es2020": true
5+
},
6+
"extends": ["airbnb-base"],
7+
"parserOptions": {
8+
"ecmaVersion": 11,
9+
"sourceType": "module"
10+
},
11+
"rules": {}
12+
}

.gacprc.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"add": false,
3+
"push": false,
4+
"emoji": "emoji",
5+
"editor": false
6+
}

.gitignore

Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
# Dependency directories
2+
node_modules/
3+
jspm_packages/
4+
/node_modules
5+
/.pnp
6+
.pnp.js
7+
8+
# next.js
9+
/.next/
10+
/out/
11+
12+
# production
13+
/build
14+
15+
# testing
16+
/coverage
17+
18+
# dotenv environment variable files
19+
.env*
20+
21+
# Mac files
22+
.DS_Store
23+
24+
25+
# Optional npm cache directory
26+
.npm
27+
28+
# Yarn
29+
yarn-error.log
30+
.pnp/
31+
.pnp.js
32+
33+
# Yarn Integrity file
34+
.yarn-integrity
35+
36+
# Storybook build
37+
storybook-static
38+
39+
# Local Netlify
40+
.netlify
41+
.idea
42+
*.env
43+
44+
# Vercel folder
45+
.vercel
46+
47+
# library folder
48+
.lib
49+
dist
50+
51+
# Compiled binary addons (http://nodejs.org/api/addons.html)
52+
build/Release
53+
54+
# Typescript v1 declaration files
55+
typings/
56+
57+
# Optional eslint cache
58+
.eslintcache
59+
60+
# Logs
61+
logs
62+
*.log
63+
lerna-debug.log
64+
65+
# debug
66+
npm-debug.log*
67+
yarn-debug.log*
68+
yarn-error.log*

.huskyrc.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"hooks": {
3+
"pre-commit": "lint-staged",
4+
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
5+
}
6+
}

.lintstagedrc.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"*.{js,ts,css,less,json,md,html,yml,yaml,pcss,jsx,tsx}": [
3+
"prettier --write",
4+
"git add"
5+
],
6+
"package.json": ["yarn lint:package"],
7+
"**/*.{js,jsx}": ["yarn lint"]
8+
}

.prettierignore

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
.cache
2+
build
3+
node_modules
4+
public
5+
dist
6+
coverage
7+
.next
8+
package.json
9+
package-lock.json
10+
yarn.lock

.prettierrc

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"arrowParens": "avoid",
3+
"semi": false,
4+
"tabWidth": 2,
5+
"singleQuote": false,
6+
"trailingComma": "all",
7+
"bracketSpacing": true,
8+
"printWidth": 80,
9+
"jsxBracketSameLine": false,
10+
"jsxSingleQuote": false,
11+
"proseWrap": "always"
12+
}

.vscode/launch.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
// A launch configuration that launches the extension inside a new window
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
{
6+
"version": "0.2.0",
7+
"configurations": [
8+
{
9+
"name": "Extension",
10+
"type": "extensionHost",
11+
"request": "launch",
12+
"runtimeExecutable": "${execPath}",
13+
"args": ["--extensionDevelopmentPath=${workspaceFolder}"]
14+
}
15+
]
16+
}

.vscodeignore

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
.vscode/**
2+
.vscode-test/**
3+
.gitignore
4+
node_modules
5+
yarn.lock
6+
.commitlintrc.json
7+
.gacprc.json
8+
.huskyrc.json
9+
.lintstagedrc.json

LICENSE

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) 2020 Navin Moorthy
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: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# VSCode CSS Snippets
2+
3+
CSS Snippets for fast prototyping

lerna.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"packages": ["."],
3+
"version": "0.0.1",
4+
"changelogPreset": "metahub",
5+
"npmClient": "yarn",
6+
"registry": "https://registry.npmjs.org/",
7+
"command": {
8+
"version": {
9+
"message": "chore(release): publish %s",
10+
"conventionalCommits": true
11+
}
12+
}
13+
}

package.json

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
{
2+
"name": "vscode-css-snippets",
3+
"displayName": "VSCode CSS Snippets",
4+
"version": "0.0.1",
5+
"description": "CSS Snippets for fast prototyping",
6+
"categories": [
7+
"Snippets"
8+
],
9+
"keywords": [
10+
"snippets",
11+
"css",
12+
"tailwind"
13+
],
14+
"homepage": "https://github.com/navin-moorthy/vscode-css-snippets#readme",
15+
"bugs": "https://github.com/navin-moorthy/vscode-css-snippets/issue",
16+
"repository": "https://github.com/navin-moorthy/vscode-css-snippets",
17+
"license": "MIT",
18+
"author": "Navin Moorthy <navin007.a@gmail.com>",
19+
"publisher": "navin-moorthy",
20+
"scripts": {
21+
"bootstrap": "lerna bootstrap",
22+
"commit": "gacp",
23+
"format": "prettier --write \"./**/*.{js,ts,css,less,json,md,html,yml,yaml,pcss,jsx,tsx}\"",
24+
"lerna-version": "lerna version",
25+
"lint": "eslint . --ext .js --fix",
26+
"lint:package": "sort-package-json"
27+
},
28+
"contributes": {
29+
"snippets": [
30+
{
31+
"language": "css",
32+
"path": "./snippets/snippets.json"
33+
}
34+
]
35+
},
36+
"devDependencies": {
37+
"@commitlint/cli": "^9.1.1",
38+
"@commitlint/config-conventional": "^9.1.1",
39+
"conventional-changelog-metahub": "^4.0.1",
40+
"eslint": "^7.5.0",
41+
"eslint-config-airbnb-base": "^14.2.0",
42+
"eslint-config-prettier": "^6.11.0",
43+
"eslint-plugin-import": "^2.22.0",
44+
"eslint-plugin-prettier": "^3.1.4",
45+
"gacp": "^2.10.0",
46+
"husky": "^4.2.5",
47+
"lerna": "^3.22.1",
48+
"lint-staged": "^10.2.11",
49+
"prettier": "^2.0.5",
50+
"sort-package-json": "^1.44.0"
51+
},
52+
"engines": {
53+
"vscode": "^1.47.0"
54+
}
55+
}

0 commit comments

Comments
 (0)