Skip to content

Commit 46df174

Browse files
Merge branch 'master' into dependabot/npm_and_yarn/react-modal-3.16.3
2 parents 949ddcc + 2d86ea8 commit 46df174

3,632 files changed

Lines changed: 286625 additions & 24470 deletions

File tree

Some content is hidden

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

.desktop-lighthouserc.js

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -3,37 +3,37 @@ module.exports = {
33
"collect": {
44
"settings": {
55
"preset": "desktop"
6-
},
6+
},
77
"staticDistDir": "./public",
88
"url": [
99
"http://localhost/404/index.html?desktop",
1010
"http://localhost/?desktop",
1111
"http://localhost/company/about/index.html?desktop",
12-
"http://localhost/cloud-native-management/meshery/index.html?desktop",
13-
"http://localhost/cloud-native-management/kanvas/index.html?desktop",
14-
"http://localhost/learn/learning-paths/index.html?desktop",
15-
"http://localhost/learn/service-mesh-books/index.html?desktop",
16-
"http://localhost/learn/service-mesh-workshops/index.html?desktop",
17-
"http://localhost/learn/index.html?desktop",
18-
"http://localhost/blog/index.html?desktop",
19-
"http://localhost/resources/index.html?desktop",
20-
"http://localhost/careers/index.html?desktop",
21-
"http://localhost/community/members/index.html?desktop",
22-
"http://localhost/community/meshmates/index.html?desktop",
23-
"http://localhost/community/events/index.html?desktop",
24-
"http://localhost/community/newcomers/index.html?desktop",
12+
"http://localhost/cloud-native-management/meshery/index.html?desktop",
13+
"http://localhost/cloud-native-management/kanvas/index.html?desktop",
14+
"http://localhost/learn/learning-paths/index.html?desktop",
15+
"http://localhost/learn/service-mesh-books/index.html?desktop",
16+
"http://localhost/learn/workshops/index.html?desktop",
17+
"http://localhost/learn/index.html?desktop",
18+
"http://localhost/blog/index.html?desktop",
19+
"http://localhost/resources/index.html?desktop",
20+
"http://localhost/careers/index.html?desktop",
21+
"http://localhost/community/members/index.html?desktop",
22+
"http://localhost/community/meshmates/index.html?desktop",
23+
"http://localhost/community/events/index.html?desktop",
24+
"http://localhost/community/newcomers/index.html?desktop",
2525
],
2626
},
2727
"assert": {
28-
"assertions": {
29-
"categories:performance": ["warn", {"minScore": .90}],
30-
"categories:accessibility": ["warn", {"minScore": .90}],
31-
"categories:best-practices": ["warn", {"minScore": .90}],
32-
"categories:seo": ["warn", {"minScore": .90}],
33-
}
34-
},
35-
"upload": {
36-
"target": "temporary-public-storage",
37-
},
28+
"assertions": {
29+
"categories:performance": ["warn", { "minScore": .90 }],
30+
"categories:accessibility": ["warn", { "minScore": .90 }],
31+
"categories:best-practices": ["warn", { "minScore": .90 }],
32+
"categories:seo": ["warn", { "minScore": .90 }],
3833
}
39-
};
34+
},
35+
"upload": {
36+
"target": "temporary-public-storage",
37+
},
38+
}
39+
};

.eslintignore

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

.eslintrc.js

Lines changed: 0 additions & 98 deletions
Original file line numberDiff line numberDiff line change
@@ -1,98 +0,0 @@
1-
module.exports = {
2-
3-
"env": {
4-
"browser": true,
5-
"es6": true,
6-
"node": true,
7-
"amd": true
8-
},
9-
"settings": {
10-
"react": {
11-
"version": "detect"
12-
}
13-
},
14-
"extends": [
15-
"eslint:recommended",
16-
"plugin:react/recommended"
17-
],
18-
"parser": "@babel/eslint-parser",
19-
"parserOptions": {
20-
"ecmaFeatures": {
21-
"jsx": true
22-
},
23-
"ecmaVersion": 2018,
24-
"sourceType": "module"
25-
},
26-
"plugins": [
27-
"react"
28-
],
29-
"rules": {
30-
"array-bracket-spacing": ["error", "never"],
31-
"comma-style": ["error"],
32-
"arrow-spacing": [
33-
"error",
34-
{
35-
"after": true,
36-
"before": true
37-
}
38-
],
39-
"block-scoped-var": "error",
40-
"block-spacing": "error",
41-
"brace-style": [
42-
"error",
43-
"1tbs"
44-
],
45-
"jsx-quotes": ["error", "prefer-double"],
46-
"keyword-spacing": "error",
47-
"key-spacing": ["error", {
48-
"beforeColon": false,
49-
"afterColon": true,
50-
}],
51-
"no-unused-vars": [
52-
"warn",
53-
{
54-
"varsIgnorePattern": "React"
55-
}
56-
],
57-
"no-trailing-spaces": "error",
58-
"object-curly-spacing": ["error", "always"],
59-
"react/display-name": 0,
60-
"react/prop-types": 0,
61-
"react/no-unescaped-entities": [0],
62-
"react/jsx-no-duplicate-props": [0],
63-
"indent": [
64-
"error", 2, {
65-
"FunctionExpression": { "parameters": "first" },
66-
"FunctionDeclaration": { "parameters": "first" },
67-
"MemberExpression": 1,
68-
"SwitchCase": 1,
69-
"outerIIFEBody": 0,
70-
"VariableDeclarator": { "var": 2, "let": 2, "const": 3 },
71-
ignoredNodes: ["TemplateLiteral"]
72-
}
73-
],
74-
"linebreak-style": [
75-
"error",
76-
"unix"
77-
],
78-
"quotes": [
79-
"error",
80-
"double"
81-
],
82-
"semi": [
83-
"error",
84-
"always"
85-
],
86-
"strict": 0,
87-
"valid-typeof": 0,
88-
"space-unary-ops": [
89-
1, {
90-
"words": true,
91-
"nonwords": false
92-
}
93-
],
94-
"space-infix-ops": [
95-
"error"
96-
]
97-
}
98-
};
1.93 KB
Loading
Lines changed: 18 additions & 0 deletions
Loading
1.95 KB
Loading
Lines changed: 18 additions & 0 deletions
Loading

.github/label-commenter-config.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,16 @@ labels:
4747
pr:
4848
body: This PR has been labeled with 'component/mesheryctl'. Note that after making changes you need to update it in the [mesheryctl command tracker](https://docs.google.com/spreadsheets/d/1q63sIGAuCnIeDs8PeM-0BAkNj8BBgPUXhLbe1Y-318o/edit#gid=0) spreadsheet.
4949
action: open
50+
- name: issue/welcome
51+
labeled:
52+
issue:
53+
body: Thanks for opening this issue. A contributor will be by to give feedback soon. In the meantime, please review the [Layer5 Contributors' Welcome Guide](https://docs.google.com/document/d/17OPtDE_rdnPQxmk2Kauhm3GwXF1R5dZ3Cj8qZLKdo5E/edit?usp=sharing) and sure to join the [community Slack](https://slack.layer5.io/).
54+
action: open
55+
pr:
56+
body: >
57+
<p align="center">Thank you for contributing to the Layer5 community! :tada: </p>
58+
<p align="center"><img src="https://raw.githubusercontent.com/layer5io/layer5/master/.github/welcome/Layer5-celebration.png" width="80%" /></p><br />
59+
action: open
5060
# pr:
5161
# body: Hi, please note that this issue will need an approved design specification before implementation proceeds. See [Creating a Functional Specification](https://docs.google.com/document/d/1RP3IWLc-MiQS-QYasqCoVuCH7--G87p5ezE5f_nOzB8/edit?usp=sharing) to create a design spec.
5262
# action: open

.github/labeler.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ area/learn:
5151
- "src/components/Learn-Components/**/*"
5252
- "src/collections/service-mesh-books/**/*"
5353
- "src/collections/service-mesh-learn/**/*"
54-
- "src/collections/service-mesh-workshops/**/*"
54+
- "src/collections/workshops/**/*"
5555
- "src/templates/book-*.js"
5656
- "src/templates/course-*.js"
5757
- "src/templates/lab-*.js"

.github/stale.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Number of days of inactivity before an issue becomes stale
2-
daysUntilStale: 45
2+
daysUntilStale: 8
33
# Number of days of inactivity before a stale issue is closed
4-
daysUntilClose: 1
4+
daysUntilClose: 0
55
# Issues with these labels will never be considered stale
66
exemptLabels:
77
- issue/willfix

0 commit comments

Comments
 (0)