Skip to content

Commit de4e73f

Browse files
committed
feat: added initial stack of files
0 parents  commit de4e73f

File tree

762 files changed

+17683
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

762 files changed

+17683
-0
lines changed

.browserslistrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
> 5% in DE, IE 11, Chrome 83

.commitlintrc.json

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

.ecrc

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"Version": "2.3.5",
3+
"Verbose": false,
4+
"Debug": false,
5+
"IgnoreDefaults": false,
6+
"SpacesAftertabs": false,
7+
"NoColor": false,
8+
"Exclude": [
9+
"source/fonts\\S*/sources/.*$",
10+
"[.]plugin[.]js$"
11+
],
12+
"AllowedContentTypes": [],
13+
"PassedFiles": [],
14+
"Disable": {
15+
"EndOfLine": false,
16+
"Indentation": false,
17+
"InsertFinalNewline": false,
18+
"TrimTrailingWhitespace": false,
19+
"IndentSize": false,
20+
"MaxLineLength": false
21+
}
22+
}

.editorconfig

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# For more information about the properties used in
2+
# this file, please see the EditorConfig documentation:
3+
# https://editorconfig.org/
4+
5+
root = true
6+
7+
[*]
8+
charset = utf-8
9+
end_of_line = lf
10+
indent_style = tab
11+
insert_final_newline = true
12+
trim_trailing_whitespace = true
13+
14+
[*.js]
15+
quote_type = single
16+
17+
[package.json]
18+
# The indent size used in the `package.json` file cannot be changed
19+
# https://github.com/npm/npm/pull/3180#issuecomment-16336516
20+
indent_size = 2
21+
indent_style = space
22+
23+
[{*.yaml,*.yml}]
24+
indent_style = space
25+
indent_size = 2

.eslintignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
**/*.plugin.js
2+
source/fonts/**/sources/
3+
helpers/test.js
4+
tests/backstop_data/engine_scripts/

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* text=auto eol=lf

.gitignore

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
.DS_Store
2+
/sources
3+
node_modules
4+
npm-debug.log
5+
public/
6+
.history
7+
.idea
8+
dependencyGraph.json
9+
source/_meta/_*head.mustache
10+
source/_meta/_*foot.mustache
11+
source/_meta/_00-head.hbs
12+
source/_meta/_01-foot.hbs
13+
dist/
14+
source/js/*.min.js*
15+
tests/backstop_data/html_report/
16+
tests/backstop_data/bitmaps_test/

.htmlvalidate.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"extends": ["html-validate:document", "html-validate:recommended"],
3+
4+
"rules": {
5+
"void-style": ["warn", { "style": "selfclosing" }],
6+
"require-sri": ["error", { "target": "crossorigin" }]
7+
}
8+
}

.husky/commit-msg

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#!/bin/sh
2+
# shellcheck disable=SC1091
3+
# shellcheck source=./_/husky.sh
4+
. "$(dirname "$0")/_/husky.sh"
5+
6+
npx --yes commitlint --edit "$1"

.husky/pre-commit

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#!/bin/sh
2+
# shellcheck disable=SC1091
3+
# shellcheck source=./_/husky.sh
4+
. "$(dirname "$0")/_/husky.sh"
5+
6+
npx --yes pretty-quick --staged

0 commit comments

Comments
 (0)