Skip to content

Commit 30319ca

Browse files
Michael.KryvoruchkoMichael.Kryvoruchko
authored andcommitted
init
0 parents  commit 30319ca

38 files changed

+5149
-0
lines changed

.eslintignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
node_modules
2+
dist
3+
public

.eslintrc.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
module.exports = {
2+
extends: [
3+
'@gitart/eslint-config-vue',
4+
],
5+
}

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
dev/Playground.vue
2+
node_modules
3+
dist
4+
.DS_Store
5+
*.local

.npmignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
*
2+
!dist/**/*
3+
!src/assets/**/*
4+
!LINCENSE
5+
README.md

.stylelintignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
dist
2+
node_modules
3+
public
4+
*.md

.stylelintrc.js

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
module.exports = {
2+
extends: ['stylelint-config-standard'],
3+
rules: {
4+
indentation: 2,
5+
'at-rule-no-unknown': [
6+
true,
7+
{
8+
ignoreAtRules: [
9+
'tailwind',
10+
'apply',
11+
'variants',
12+
'responsive',
13+
'screen',
14+
],
15+
},
16+
],
17+
'declaration-block-trailing-semicolon': null,
18+
'no-descending-specificity': null,
19+
'value-keyword-case': null,
20+
},
21+
}

.vscode/extensions.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"recommendations": [
3+
"johnsoncodehk.volar",
4+
"dbaeumer.vscode-eslint",
5+
"stylelint.vscode-stylelint",
6+
"streetsidesoftware.code-spell-checker"
7+
]
8+
}

.vscode/settings.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"prettier.enable": false,
3+
"typescript.tsdk": "node_modules/typescript/lib",
4+
"editor.codeActionsOnSave": {
5+
"source.fixAll.eslint": true,
6+
},
7+
"cSpell.words": [
8+
"gitart",
9+
"stackable",
10+
"vite",
11+
"stylelint",
12+
"unplugin",
13+
"windicss",
14+
"vitejs"
15+
],
16+
}

LICENSE

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
MIT License
2+
3+
Copyright (c) 2021 Misha Kryvoruchko
4+
5+
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:
6+
7+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
8+
9+
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.
10+
11+
The MIT License (MIT)

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Starter

0 commit comments

Comments
 (0)