Skip to content

Commit 19e6af8

Browse files
authored
Merge branch 'master' into workspacepackags
2 parents 53666be + 7ad3ef3 commit 19e6af8

25 files changed

+4094
-1603
lines changed

.github/pull_request_template.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
Fixes #.
2+
3+
For every PR, please check the following:
4+
- [ ] End-user documentation check. If this PR requires end-user documentation in the Julia VS Code extension docs, please add that at https://github.com/julia-vscode/docs.
5+
- [ ] Changelog mention. If this PR should be mentioned in the CHANGELOG for the Julia VS Code extension, please open a PR against https://github.com/julia-vscode/julia-vscode/blob/master/CHANGELOG.md with those changes.

.github/workflows/jlpkgbutler-ci-master-workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ${{ matrix.os }}
1111
strategy:
1212
matrix:
13-
julia-version: [1.0.5, 1.1.1, 1.2.0, 1.3.1, 1.4.1]
13+
julia-version: ['1.0', '1.1', '1.2', '1.3', '1.4', '1.5', '1.6']
1414
julia-arch: [x64, x86]
1515
os: [ubuntu-latest, windows-latest, macOS-latest]
1616
exclude:

.github/workflows/jlpkgbutler-ci-pr-workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ${{ matrix.os }}
1010
strategy:
1111
matrix:
12-
julia-version: [1.0.5, 1.1.1, 1.2.0, 1.3.1, 1.4.1]
12+
julia-version: ['1.0', '1.1', '1.2', '1.3', '1.4', '1.5', '1.6']
1313
julia-arch: [x64, x86]
1414
os: [ubuntu-latest, windows-latest, macOS-latest]
1515
exclude:

.github/workflows/jlpkgbutler-codeformat-pr-workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- uses: actions/checkout@v2
1313
- uses: julia-actions/julia-codeformat@releases/v1
1414
- name: Create Pull Request
15-
uses: peter-evans/create-pull-request@v2
15+
uses: peter-evans/create-pull-request@v3
1616
with:
1717
token: ${{ secrets.GITHUB_TOKEN }}
1818
commit-message: Format files using DocumentFormat

Project.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "StaticLint"
22
uuid = "b3cc710f-9c33-5bdb-a03d-a94903873e97"
3-
version = "4.0.1-DEV"
3+
version = "8.0.1-DEV"
44

55
[deps]
66
Serialization = "9e88b42a-f829-5b0c-bbe9-9e923198166b"
@@ -15,8 +15,8 @@ Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
1515

1616
[compat]
1717
julia = "1"
18-
CSTParser = "2.1"
19-
SymbolServer = "4.1"
18+
CSTParser = "3.1"
19+
SymbolServer = "5.1.1, 6.0, 7.0"
2020

2121
[targets]
2222
test = ["Test", "Pkg", "SHA", "LibGit2"]

README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,6 @@ An `AbstractFile` must support the following:
6262

6363
`StaticLint.getpath(file)` : Retrieve the path of a file.
6464

65-
`StaticLint.setpath(file, path)` : Set the path of a file.
66-
6765
`StaticLint.getroot(file)` : Retrieve the root of a file. The root is the main/first file in a file structure. For example the `StaticLint.jl` file is the root of all files (including itself) in `src/`.
6866

6967
`StaticLint.setroot(file, root)` : Set the root of a file.
@@ -76,4 +74,4 @@ An `AbstractFile` must support the following:
7674

7775
`StaticLint.setserver(file, server::AbstractServer)` : Set the server of a file.
7876

79-
`StaticLint.scopepass(file, target = nothing(optional))` : Run a full pass on the ST of a project (i.e. ST of all linked files). It is expected that `file` is the root of the project.
77+
`StaticLint.semantic_pass(file, target = nothing(optional))` : Run a full pass on the ST of a project (i.e. ST of all linked files). It is expected that `file` is the root of the project.

docs/make.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ makedocs(;
77
repo="https://github.com/julia-vscode/StaticLint.jl/blob/{commit}{path}#L{line}",
88
sitename="StaticLint.jl",
99
format=Documenter.HTML(;
10-
prettyurls = prettyurls = get(ENV, "CI", nothing) == "true",
10+
prettyurls=prettyurls = get(ENV, "CI", nothing) == "true",
1111
# canonical="https://www.julia-vscode.org/StaticLint.jl",
1212
# assets=String[],
1313
),

docs/src/index.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,6 @@ An `AbstractFile` must support the following:
6666

6767
`StaticLint.getpath(file)` : Retrieve the path of a file.
6868

69-
`StaticLint.setpath(file, path)` : Set the path of a file.
70-
7169
`StaticLint.getroot(file)` : Retrieve the root of a file. The root is the main/first file in a file structure. For example the `StaticLint.jl` file is the root of all files (including itself) in `src/`.
7270

7371
`StaticLint.setroot(file, root)` : Set the root of a file.
@@ -80,4 +78,4 @@ An `AbstractFile` must support the following:
8078

8179
`StaticLint.setserver(file, server::AbstractServer)` : Set the server of a file.
8280

83-
`StaticLint.scopepass(file, target = nothing(optional))` : Run a full pass on the ST of a project (i.e. ST of all linked files). It is expected that `file` is the root of the project.
81+
`StaticLint.semantic_pass(file, target = nothing(optional))` : Run a full pass on the ST of a project (i.e. ST of all linked files). It is expected that `file` is the root of the project.

0 commit comments

Comments
 (0)