Skip to content

Commit 83dc573

Browse files
author
vcmirko
committed
test docs
1 parent a954a7c commit 83dc573

File tree

289 files changed

+19992
-26560
lines changed

Some content is hidden

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

289 files changed

+19992
-26560
lines changed

docs/.eslintrc

Lines changed: 89 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,89 @@
1+
{
2+
"env": {
3+
"browser": true
4+
},
5+
"parserOptions": {
6+
"ecmaVersion": 5
7+
},
8+
"globals": {
9+
"_": false,
10+
"Backbone": false,
11+
"jQuery": false,
12+
"JSON": false,
13+
"wp": false
14+
},
15+
"rules": {
16+
"array-bracket-spacing": [ 2, "always" ],
17+
"brace-style": [ 2, "1tbs" ],
18+
"camelcase": 2,
19+
"comma-dangle": 0,
20+
"comma-spacing": 2,
21+
"comma-style": 2,
22+
"computed-property-spacing": [ 2, "always" ],
23+
"constructor-super": 2,
24+
"consistent-return": 0,
25+
"curly": 2,
26+
"dot-notation": 2,
27+
"eqeqeq": [ 2, "allow-null" ],
28+
"eol-last": 2,
29+
"func-call-spacing": 2,
30+
"jsx-quotes": [ 2, "prefer-double" ],
31+
"key-spacing": 0,
32+
"keyword-spacing": 2,
33+
"max-len": [ 2, { "code": 100 } ],
34+
"new-cap": [ 2, { "capIsNew": false, "newIsCap": true } ],
35+
"no-cond-assign": 2,
36+
"no-const-assign": 2,
37+
"no-console": 2,
38+
"no-debugger": 2,
39+
"no-dupe-args": 2,
40+
"no-dupe-keys": 2,
41+
"no-duplicate-case": 2,
42+
"no-else-return": 2,
43+
"no-empty": [ 2, { "allowEmptyCatch": true } ],
44+
"no-extra-semi": 2,
45+
"no-fallthrough": 0,
46+
"no-lonely-if": 2,
47+
"no-mixed-requires": 0,
48+
"no-multiple-empty-lines": [ 2, { "max": 1 } ],
49+
"no-negated-in-lhs": 2,
50+
"no-nested-ternary": 2,
51+
"no-new": 2,
52+
"no-process-exit": 2,
53+
"no-redeclare": 2,
54+
"no-spaced-func": 2,
55+
"no-trailing-spaces": 2,
56+
"no-undef": 2,
57+
"no-underscore-dangle": 0,
58+
"no-unreachable": 2,
59+
"no-unused-vars": 2,
60+
"no-use-before-define": [ 2, "nofunc" ],
61+
"object-curly-spacing": [ 2, "always" ],
62+
"one-var": 0,
63+
"operator-linebreak": [ 2, "after", { "overrides": {
64+
"?": "before",
65+
":": "before"
66+
} } ],
67+
"padded-blocks": [ 2, "never" ],
68+
"prefer-const": 2,
69+
"quote-props": [ 2, "as-needed", { "keywords": true } ],
70+
"quotes": [ 2, "single", "avoid-escape" ],
71+
"semi": 2,
72+
"semi-spacing": 2,
73+
"space-before-blocks": [ 2, "always" ],
74+
"space-before-function-paren": [ 2, "never" ],
75+
"space-in-parens": [ 2, "always" ],
76+
"space-infix-ops": [ 2, { "int32Hint": false } ],
77+
"space-unary-ops": [ 2, {
78+
"overrides": {
79+
"!": true
80+
}
81+
} ],
82+
"strict": [ 2, "function" ],
83+
"yoda": 0,
84+
"no-shadow": 0,
85+
"indent": [ "error", "tab", { "SwitchCase": 1, "VariableDeclarator": 2 } ],
86+
"no-mixed-spaces-and-tabs": 0,
87+
"no-multi-spaces": [ "error", { "exceptions": { "Property": true, "VariableDeclarator": true, "ImportDeclaration": true } } ]
88+
}
89+
}

docs/.gitlab-ci.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
image: ruby:2.3
2+
3+
variables:
4+
JEKYLL_ENV: production
5+
6+
pages:
7+
stage: deploy
8+
script:
9+
- gem install jekyll
10+
- jekyll build -d public/
11+
artifacts:
12+
paths:
13+
- public
14+
only:
15+
- master

docs/.htaccess

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
ErrorDocument 404 /404/index.html

docs/404.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
---
2-
title: "Page Not Found"
3-
search: exclude
4-
---
2+
# Page settings
3+
layout: error-404
4+
title: 404 - Page not found
55

6-
Sorry, but the page you were trying to view does not exist. Try searching for it or looking at the URL to see if it looks correct.
6+
# Content settings
7+
page_content:
8+
title: <strong>404 /</strong> Page not found
9+
message: The link you clicked may be broken <br>or the page may have been removed.
10+
---

docs/Dockerfile

Lines changed: 0 additions & 14 deletions
This file was deleted.

docs/Gemfile

Lines changed: 0 additions & 7 deletions
This file was deleted.

0 commit comments

Comments
 (0)