Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
dwightjack committed Mar 14, 2021
0 parents commit 0e3d252
Show file tree
Hide file tree
Showing 20 changed files with 4,579 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
root = true

[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = false

[*.md]
trim_trailing_whitespace = false
2 changes: 2 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/dist
/tmp
19 changes: 19 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"root": true,
"extends": [
"eslint:recommended",
"plugin:node/recommended",
"plugin:prettier/recommended"
],
"env": {
"node": true
},
"rules": {
"no-console": 0,
"node/no-unpublished-require": 0,
"no-shadow": "warn",
"block-scoped-var": "error",
"consistent-return": "error",
"eqeqeq": "error"
}
}
97 changes: 97 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,97 @@
## Default .gitignore
## For other languages / frameworks / editors
## See: https://github.com/github/gitignore



#################
## Eclipse
#################

*.pydevproject
.project
.metadata
tmp/**
tmp/**/*
*.tmp
*.bak
*.swp
*~.nib
local.properties
.classpath
.settings
.loadpath
.externalToolBuilders/
*.launch
.cproject
.buildpath



##########
## VIM
##########

.*.s[a-w][a-z]
*.un~
Session.vim
.netrwhist
*~



#############################
## SublimeText project files
#############################

*.sublime-workspace
*.sublime-project



#############
## Softwares
#############

nbproject
.idea
.externalToolBuilders

#################
## OS generated
#################

# Windows
Thumbs.db
ehthumbs.db
Desktop.ini
$RECYCLE.BIN/

#Mac
.DS_Store
.DS_Store?
.AppleDouble
.LSOverride
Icon
._*
.Spotlight-V100
.Trashes


################
## Application
################

#Exclude logs
log
*.log



############
## Misc
############
!.vscode
node_modules
.cache
dist
11 changes: 11 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
.DS_Store
*.log
test
examples
.editorconfig
.eslintignore
.eslintrc.js
karma*.conf.js
rollup.*
.rpt2_*
tmp
2 changes: 2 additions & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
save-prefix=''
tag-version-prefix=""
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
14
3 changes: 3 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
dist
package.json
node_modules
6 changes: 6 additions & 0 deletions .prettierrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
module.exports = {
trailingComma: 'all',
arrowParens: 'always',
semi: true,
singleQuote: true,
};
33 changes: 33 additions & 0 deletions .stylelintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
"extends": ["stylelint-config-standard", "stylelint-prettier/recommended"],
"plugins": ["stylelint-scss"],
"ignoreFiles": ["dist/**/*", "node_modules/**/*"],
"rules": {
"at-rule-no-unknown": null,
"declaration-empty-line-before": "never",
"scss/at-rule-no-unknown": true,
"rule-empty-line-before": [
"always",
{
"ignore": ["after-comment", "inside-block"]
}
],
"at-rule-empty-line-before": [
"always",
{
"ignore": [
"after-comment",
"inside-block",
"blockless-after-same-name-blockless"
],
"ignoreAtRules": ["else", "content", "return", "warn"]
}
],
"block-closing-brace-newline-after": [
"always",
{
"ignoreAtRules": ["if", "else", "content", "return", "warn"]
}
]
}
}
18 changes: 18 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"[js]": {
"editor.formatOnSave": false
},
"[ts]": {
"editor.formatOnSave": false
},
"css.validate": false,
"less.validate": false,
"scss.validate": false,
"editor.codeActionsOnSave": {
"source.fixAll.stylelint": true,
"source.fixAll.eslint": true
},
"[css]": {
"editor.formatOnSave": false
},
}
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2019 Marco Solazzi

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.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Starter Project
Loading

0 comments on commit 0e3d252

Please sign in to comment.