Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
PeterShon committed Dec 15, 2020
0 parents commit 929479b
Show file tree
Hide file tree
Showing 131 changed files with 22,806 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Файл с настройками для редактора.
#
# Если вы разрабатываете в редакторе WebStorm, BBEdit, Coda или SourceLair
# этот файл уже поддерживается и не нужно производить никаких дополнительных
# действий.
#
# Если вы ведёте разработку в другом редакторе, зайдите
# на https://editorconfig.org и в разделе «Download a Plugin»
# скачайте дополнение для вашего редактора.

root = true

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

[*.md]
trim_trailing_whitespace = false
5 changes: 5 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
build
gulpfiles.js

/gulp
/src/local_modules
28 changes: 28 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"env": {
"jquery": true
},
"overrides": [
{
"files": [ "src/**/*.js" ],
"extends": [
"standard",
"htmlacademy/es6"
],
"rules": {
"indent": [
"error",
4
],
"semi": [
"error",
"never"
],
"quotes": [
"error",
"backtick"
]
}
}
]
}
8 changes: 8 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
* text eol=lf

*.png binary
*.jpg binary
*.jpeg binary
*.webp binary
*.woff binary
*.woff2 binary
16 changes: 16 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Файлы и папки операционной системы
.DS_Store
Thumbs.db

# Файлы редактора
.idea
*.sublime*
.vscode

# Вспомогательные файлы
*.log*
node_modules/
reports/

# Папка с собранными файлами проекта
# build/
19 changes: 19 additions & 0 deletions .pug-lint.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"disallowClassAttributeWithStaticValue": true,
"disallowClassLiteralsBeforeIdLiterals": true,
"disallowDuplicateAttributes": true,
"disallowHtmlText": true,
"disallowIdAttributeWithStaticValue": true,
"disallowLegacyMixinCall": true,
"disallowMultipleLineBreaks": true,
"disallowSpaceAfterCodeOperator": true,
"disallowSpacesInsideAttributeBrackets": true,
"disallowStringConcatenation": true,
"requireClassLiteralsBeforeAttributes": true,
"requireLowerCaseAttributes": true,
"requireLowerCaseTags": true,
"requireStrictEqualityOperators": true,
"validateAttributeQuoteMarks": "\"",
"validateDivTags":true,
"validateLineBreaks":"LF"
}
34 changes: 34 additions & 0 deletions .stylelintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
{
"plugins": [
"stylelint-scss"
],
"extends": [
"stylelint-config-standard",
"stylelint-config-standard-scss",
"stylelint-config-htmlacademy"
],
"rules": {
"indentation": 4,
"at-rule-no-vendor-prefix": true,
"at-rule-empty-line-before": "always",
"scss/selector-no-redundant-nesting-selector": true,
"scss/at-import-partial-extension": "never",
"block-closing-brace-newline-before": "always",
"block-closing-brace-newline-after": "always",
"at-rule-name-case": "lower",
"at-rule-name-space-after": "always",
"at-rule-semicolon-newline-after": "always",
"at-rule-semicolon-space-before": "never",
"selector-max-class": 2,
"unit-whitelist": [
"em",
"rem",
"%",
"px",
"vh",
"vm",
"vmax",
"vmin"
]
}
}
5 changes: 5 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Copyright 2020 Denys Vykhrystiuk

Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.

THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
327 changes: 327 additions & 0 deletions README.md

Large diffs are not rendered by default.

Loading

0 comments on commit 929479b

Please sign in to comment.