Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"root": true,
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 6,
"ecmaVersion": 2022,
"sourceType": "module"
},
"plugins": [
Expand Down
29 changes: 29 additions & 0 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: 'Close stale issues and PRs (stale.yml)'
on:
schedule:
- cron: '30 1 * * *'

jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v9
with:
stale-issue-message: >
This issue has been marked as stale because it has been open for 60 days with no activity.
It will be closed in 7 days unless there is further activity. To keep it open, add a comment or remove the stale label.

stale-pr-message: >
This pull request has been marked as stale because it has been open for 60 days with no activity.
It will be closed in 10 days unless there is further activity. To keep it open, add a comment or remove the stale label.

close-issue-message: >
This issue was closed because it has been inactive for 7 days after being marked as stale.

close-pr-message: >
This pull request was closed because it has been inactive for 10 days after being marked as stale.

days-before-issue-stale: 60
days-before-pr-stale: 60
days-before-issue-close: 7
days-before-pr-close: 10
5 changes: 4 additions & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,11 @@
"name": "Extension",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}"
"--disable-extensions",
"--extensionDevelopmentPath=${workspaceFolder}",
"${workspaceRoot}/tests/grammar/integration"
]
}
]
Expand Down
25 changes: 25 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"label": "watch",
"script": "watch",
"problemMatcher": [],
"presentation": {
"group": "build"
}
},
{
"label": "build",
"dependsOn": [
"watch"
],
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": []
}
]
}
Loading
Loading