Skip to content

Commit b22d7f4

Browse files
authored
Merge pull request #1 from cdr/master
Master
2 parents 19d14d2 + caee285 commit b22d7f4

File tree

4,821 files changed

+1336964
-8629
lines changed

Some content is hidden

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

4,821 files changed

+1336964
-8629
lines changed

.eslintrc.yaml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,23 @@ extends:
1919
- prettier/@typescript-eslint # Remove conflicts again.
2020

2121
rules:
22+
# Sometimes you need to add args to implement a function signature even
23+
# if they are unused.
24+
"@typescript-eslint/no-unused-vars": ["error", { "args": "none" }]
2225
# For overloads.
2326
no-dupe-class-members: off
2427
"@typescript-eslint/no-use-before-define": off
2528
"@typescript-eslint/no-non-null-assertion": off
29+
"@typescript-eslint/ban-types": off
30+
"@typescript-eslint/no-var-requires": off
31+
"@typescript-eslint/explicit-module-boundary-types": off
32+
"@typescript-eslint/no-explicit-any": off
33+
eqeqeq: error
34+
import/order:
35+
[error, { alphabetize: { order: "asc" }, groups: [["builtin", "external", "internal"], "parent", "sibling"] }]
36+
no-async-promise-executor: off
37+
# This isn't a real module, just types, which apparently doesn't resolve.
38+
import/no-unresolved: [error, { ignore: ["express-serve-static-core"] }]
2639

2740
settings:
2841
# Does not work with CommonJS unfortunately.

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
* @code-asher @nhooyr
1+
ci/helm-chart @Matthew-Beckett @alexgorbatchev

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
blank_issues_enabled: false
2+
contact_links:
3+
- name: Question
4+
url: https://github.com/cdr/code-server/discussions/new?category_id=22503114
5+
about: Ask the community for help on our GitHub Discussions board
6+
- name: Chat
7+
about: Need immediate help or just want to talk? Hop in our Slack
8+
url: https://cdr.co/join-community

.github/ISSUE_TEMPLATE/doc.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
name: Documentation improvement
3+
about: Suggest a documentation improvement
4+
title: ""
5+
labels: "docs"
6+
assignees: ""
7+
---

.github/ISSUE_TEMPLATE/extension-request.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Extension request
33
about: Request an extension missing from the code-server marketplace
44
title: ""
55
labels: extension-request
6-
assignees: cmoog
6+
assignees: ""
77
---
88

99
<!--

.github/issue_template.md

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

.github/lock.yml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
# Configuration for Lock Threads - https://github.com/dessant/lock-threads-app
2+
3+
# Number of days of inactivity before a closed issue or pull request is locked
4+
daysUntilLock: 90
5+
6+
# Skip issues and pull requests created before a given timestamp. Timestamp must
7+
# follow ISO 8601 (`YYYY-MM-DD`). Set to `false` to disable
8+
skipCreatedBefore: false
9+
10+
# Issues and pull requests with these labels will be ignored. Set to `[]` to disable
11+
exemptLabels: []
12+
13+
# Label to add before locking, such as `outdated`. Set to `false` to disable
14+
lockLabel: false
15+
16+
# Comment to post before locking. Set to `false` to disable
17+
lockComment: >
18+
This thread has been automatically locked since there has not been
19+
any recent activity after it was closed. Please open a new issue for
20+
related bugs.
21+
22+
# Assign `resolved` as the reason for locking. Set to `false` to disable
23+
setLockReason: true
24+
# Limit to only `issues` or `pulls`
25+
# only: issues
26+
27+
# Optionally, specify configuration settings just for `issues` or `pulls`
28+
# issues:
29+
# exemptLabels:
30+
# - help-wanted
31+
# lockLabel: outdated
32+
33+
# pulls:
34+
# daysUntilLock: 30
35+
36+
# Repository to extend settings from
37+
# _extends: repo

.github/pull_request_template.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
<!--
22
Please link to the issue this PR solves.
33
If there is no existing issue, please first create one unless the fix is minor.
4+
5+
Please make sure the base of your PR is the master branch!
46
-->

.github/workflows/ci.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
steps:
99
- uses: actions/checkout@v1
1010
- name: Run ./ci/steps/fmt.sh
11-
uses: ./ci/images/debian8
11+
uses: ./ci/images/debian10
1212
with:
1313
args: ./ci/steps/fmt.sh
1414

@@ -17,7 +17,7 @@ jobs:
1717
steps:
1818
- uses: actions/checkout@v1
1919
- name: Run ./ci/steps/lint.sh
20-
uses: ./ci/images/debian8
20+
uses: ./ci/images/debian10
2121
with:
2222
args: ./ci/steps/lint.sh
2323

@@ -26,7 +26,7 @@ jobs:
2626
steps:
2727
- uses: actions/checkout@v1
2828
- name: Run ./ci/steps/test.sh
29-
uses: ./ci/images/debian8
29+
uses: ./ci/images/debian10
3030
with:
3131
args: ./ci/steps/test.sh
3232

@@ -35,7 +35,7 @@ jobs:
3535
steps:
3636
- uses: actions/checkout@v1
3737
- name: Run ./ci/steps/release.sh
38-
uses: ./ci/images/debian8
38+
uses: ./ci/images/debian10
3939
with:
4040
args: ./ci/steps/release.sh
4141
- name: Upload npm package artifact
@@ -116,7 +116,7 @@ jobs:
116116
name: release-packages
117117
path: ./release-packages
118118
- name: Run ./ci/steps/build-docker-image.sh
119-
uses: ./ci/images/debian8
119+
uses: ./ci/images/debian10
120120
with:
121121
args: ./ci/steps/build-docker-image.sh
122122
- name: Upload release image

.github/workflows/publish.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
steps:
1111
- uses: actions/checkout@v1
1212
- name: Run ./ci/steps/publish-npm.sh
13-
uses: ./ci/images/debian8
13+
uses: ./ci/images/debian10
1414
with:
1515
args: ./ci/steps/publish-npm.sh
1616
env:
@@ -22,7 +22,7 @@ jobs:
2222
steps:
2323
- uses: actions/checkout@v1
2424
- name: Run ./ci/steps/push-docker-manifest.sh
25-
uses: ./ci/images/debian8
25+
uses: ./ci/images/debian10
2626
with:
2727
args: ./ci/steps/push-docker-manifest.sh
2828
env:

0 commit comments

Comments
 (0)