Skip to content

Commit

Permalink
initial / 1.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Ruzzy77 committed Jan 21, 2023
0 parents commit 3a92b6a
Show file tree
Hide file tree
Showing 28 changed files with 32,891 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
root = true

[*]
charset = utf-8
end_of_line = lf
indent_style = space
indent_size = 4
insert_final_newline = true

[*.{txt}]
end_of_line = crlf

[*.{js,jsx,ts,tsx}]
indent_style = space
indent_size = 2
trim_trailing_whitespace = true

[*.{html,json,yml}]
indent_style = space
indent_size = 4

[*.{css,scss,sass,less}]
indent_style = space
indent_size = 2
trim_trailing_whitespace = true


[*.{md,markdown}]
indent_style = tab
indent_size = 4
trim_trailing_whitespace = false
2 changes: 2 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Set default behavior to automatically normalize line endings.
* text=auto
37 changes: 37 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
node_modules
*.vsix
package-lock.json

# dependencies
/node_modules
/.pnp
.pnp.*
.next

# testing
/coverage

# production
/build

# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*


.yarn/*
!.yarn/cache
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/sdks
!.yarn/versions

yarn.lock
60 changes: 60 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
{
"tabWidth": 2,
"useTabs": false,
"endOfLine": "auto",
"semi": true,
"singleQuote": false,
"proseWrap": "preserve",
"trailingComma": "es5",
"bracketSameLine": true,
"bracketSpacing": true,
"arrowParens": "always",
"consistent": true,

"htmlWhitespaceSensitivity": "css",
"jsxBracketSameLine": false,
"jsxSingleQuote": false,
"printWidth": 100,
"quoteProps": "as-needed",
"requirePragma": false,
"insertPragma": false,
"vueIndentScriptAndStyle": false,
"embeddedLanguageFormatting": "auto",

"overrides": [
{
"files": "*.json",
"options": {
"printWidth": 30,
"tabWidth": 4,
"useTabs": false
}
},
{
"files": "*.{html,yml,yaml}",
"options": {
"printWidth": 120,
"tabWidth": 4,
"useTabs": false
}
},
{
"files": "*.{md,markdown}",
"options": {
"printWidth": 200,
"tabWidth": 4,
"useTabs": true
}
},
{
"files": "*.{js,ts,jsx,tsx}",
"options": {
"printWidth": 120,
"tabWidth": 2
}
}
],
"plugins": [
"prettier-plugin-multiline-arrays"
]
}
17 changes: 17 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
// A launch configuration that launches the extension inside a new window
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
{
"version": "0.2.0",
"configurations": [
{
"name": "Extension",
"type": "extensionHost",
"request": "launch",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}"
]
}
]
}
7 changes: 7 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"prettier.configPath": ".prettierrc",
"search.exclude": {
"**/.yarn": true,
"**/.pnp.*": true
}
}
4 changes: 4 additions & 0 deletions .vscodeignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.vscode/**
.vscode-test/**
.gitignore
vsc-extension-quickstart.md
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
823 changes: 823 additions & 0 deletions .yarn/releases/yarn-3.3.1.cjs

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
yarnPath: .yarn/releases/yarn-3.3.1.cjs
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Change Log

All notable changes to the "Ruzzy Theme" extension will be documented in this file.

Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file.

## [Unreleased]

- Initial release
21 changes: 21 additions & 0 deletions LICENSE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) [year] [fullname]

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Loading

0 comments on commit 3a92b6a

Please sign in to comment.