Skip to content

Commit 5127bb7

Browse files
author
John Ouellet
committed
Initial commit
1 parent 6eeda48 commit 5127bb7

Some content is hidden

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

46 files changed

+7360
-1
lines changed

.editorconfig

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# top-most EditorConfig file
2+
root = true
3+
4+
# Unix-style newlines with a newline ending every file
5+
[*]
6+
end_of_line = lf
7+
insert_final_newline = true
8+
charset = utf-8
9+
10+
[*.js]
11+
indent_style = space
12+
indent_size = 2

.eslintignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
.temp
2+
.cache
3+
dist
4+
_site

.eslintrc.json

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
{
2+
"env": {
3+
"node": true,
4+
"mocha": true
5+
},
6+
"parser": "@babel/eslint-parser",
7+
"parserOptions": {
8+
"sourceType": "module",
9+
"ecmaVersion": 8,
10+
"requireConfigFile": false
11+
},
12+
"extends": "google",
13+
"rules": {
14+
"arrow-parens": ["error",
15+
"as-needed"
16+
],
17+
"max-len": ["error", {
18+
"code": 120,
19+
"ignoreComments": true
20+
}],
21+
"require-jsdoc": ["error", {
22+
"require": {
23+
"FunctionDeclaration": true,
24+
"MethodDefinition": false,
25+
"ClassDeclaration": false,
26+
"ArrowFunctionExpression": false,
27+
"FunctionExpression": false
28+
}
29+
}]
30+
}
31+
}

.gitattributes

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Set the default behavior, in case people don't have core.autocrlf set.
2+
* text=auto
3+
4+
# Declare files that will always have LF line endings on checkout.
5+
*.js text eol=lf
6+
*.sh text eol=lf
7+
*.conf text eol=lf
8+
*.cnf text eol=lf
9+
*.ini text eol=lf
10+
*.php text eol=lf
11+
*.vcl text eol=lf

.github/FUNDING.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# These are supported funding model platforms
2+
3+
github: [lando, pirog]
4+
patreon: devwithlando
5+
open_collective: devwithlando
6+
custom: https://lando.dev/join
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
name: Bug
3+
about: Create a bug report to help us improve this plugin
4+
labels: bug
5+
---
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
name: Docs
3+
about: Suggest a documentation change or improvement
4+
labels: docs
5+
---
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
name: Feature
3+
about: Suggest an idea for this project
4+
labels: feature
5+
---

.github/ISSUE_TEMPLATE/misc.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
name: Misc
3+
about: Create basically every other kind of issue
4+
labels: task
5+
---

.github/ISSUE_TEMPLATE/security.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
name: Security
3+
about: Create a security issue
4+
labels: security
5+
---
6+
7+
**DO NOT SUBMIT A SECURITY ISSUE HERE!**
8+
9+
If you have discovered a security issue with Lando, please contact the Lando Security Team directly at [[email protected]](mailto:[email protected]).
10+
11+
We manage security issues separately in a private repository until the issue has been resolved. Even if you're not sure if it's a security problem, please contact the security team before filing an issue, blogging, or tweeting about it.
12+
13+
**DO NOT SUBMIT A SECURITY ISSUE HERE!**

0 commit comments

Comments
 (0)