Skip to content

Commit c6b3c0a

Browse files
committed
Reformat all with prettier.
1 parent fa29f94 commit c6b3c0a

24 files changed

+634
-669
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 29 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ permissions:
1616

1717
on:
1818
push:
19-
branches: [ main ]
19+
branches: [main]
2020
pull_request:
2121
# The branches below must be a subset of the branches above
22-
branches: [ main ]
22+
branches: [main]
2323
schedule:
24-
- cron: '33 1 * * 5'
24+
- cron: "33 1 * * 5"
2525

2626
jobs:
2727
analyze:
@@ -35,39 +35,39 @@ jobs:
3535
strategy:
3636
fail-fast: false
3737
matrix:
38-
language: [ 'javascript' ]
38+
language: ["javascript"]
3939
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
4040
# Learn more about CodeQL language support at https://git.io/codeql-language-support
4141

4242
steps:
43-
- name: Checkout repository
44-
uses: actions/checkout@v3
43+
- name: Checkout repository
44+
uses: actions/checkout@v3
4545

46-
# Initializes the CodeQL tools for scanning.
47-
- name: Initialize CodeQL
48-
uses: github/codeql-action/init@v2
49-
with:
50-
languages: ${{ matrix.language }}
51-
# If you wish to specify custom queries, you can do so here or in a config file.
52-
# By default, queries listed here will override any specified in a config file.
53-
# Prefix the list here with "+" to use these queries and those in the config file.
54-
# queries: ./path/to/local/query, your-org/your-repo/queries@main
46+
# Initializes the CodeQL tools for scanning.
47+
- name: Initialize CodeQL
48+
uses: github/codeql-action/init@v2
49+
with:
50+
languages: ${{ matrix.language }}
51+
# If you wish to specify custom queries, you can do so here or in a config file.
52+
# By default, queries listed here will override any specified in a config file.
53+
# Prefix the list here with "+" to use these queries and those in the config file.
54+
# queries: ./path/to/local/query, your-org/your-repo/queries@main
5555

56-
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
57-
# If this step fails, then you should remove it and run the build manually (see below)
58-
- name: Autobuild
59-
uses: github/codeql-action/autobuild@v2
56+
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
57+
# If this step fails, then you should remove it and run the build manually (see below)
58+
- name: Autobuild
59+
uses: github/codeql-action/autobuild@v2
6060

61-
# ℹ️ Command-line programs to run using the OS shell.
62-
# 📚 https://git.io/JvXDl
61+
# ℹ️ Command-line programs to run using the OS shell.
62+
# 📚 https://git.io/JvXDl
6363

64-
# ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
65-
# and modify them (or add more) to build your code if your project
66-
# uses a compiled language
64+
# ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
65+
# and modify them (or add more) to build your code if your project
66+
# uses a compiled language
6767

68-
#- run: |
69-
# make bootstrap
70-
# make release
68+
#- run: |
69+
# make bootstrap
70+
# make release
7171

72-
- name: Perform CodeQL Analysis
73-
uses: github/codeql-action/analyze@v2
72+
- name: Perform CodeQL Analysis
73+
uses: github/codeql-action/analyze@v2

.github/workflows/main.yml

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -5,29 +5,29 @@ permissions:
55

66
on:
77
push:
8-
branches: [ main ]
8+
branches: [main]
99
pull_request:
10-
branches: [ main ]
10+
branches: [main]
1111
workflow_dispatch:
1212

1313
jobs:
1414
build:
1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/checkout@v3
18-
- name: install node
19-
uses: actions/setup-node@v3
20-
with:
21-
node-version: 16
22-
- name: yarn install
23-
run: yarn install
24-
- name: tsc
25-
run: tsc --noEmit --noErrorTruncation --pretty false
17+
- uses: actions/checkout@v3
18+
- name: install node
19+
uses: actions/setup-node@v3
20+
with:
21+
node-version: 16
22+
- name: yarn install
23+
run: yarn install
24+
- name: tsc
25+
run: tsc --noEmit --noErrorTruncation --pretty false
2626
api-check:
2727
runs-on: ubuntu-latest
2828
steps:
29-
- uses: actions/checkout@v3
30-
- name: Check Meson API
31-
run: |
32-
git clone https://github.com/mesonbuild/meson --depth 1
33-
./ci/check-meson-api.py
29+
- uses: actions/checkout@v3
30+
- name: Check Meson API
31+
run: |
32+
git clone https://github.com/mesonbuild/meson --depth 1
33+
./ci/check-meson-api.py

CHANGELOG.md

Lines changed: 24 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -15,53 +15,60 @@
1515

1616
## 1.9.0
1717

18-
- Automatically configure Intellisense to use compile_commands.json generated
19-
by Meson
18+
- Automatically configure Intellisense to use compile_commands.json generated by
19+
Meson
2020
- Meson `tasks.json` entries specifying `target` will now need to include the
2121
target's type. E.g. `"target": "relative/path/to/targetname:shared_library"`
2222

2323
## 1.8.1
2424

25-
- Drop vscode-nls dependency, which was unused and is no longer provided by default
25+
- Drop vscode-nls dependency, which was unused and is no longer provided by
26+
default
2627

2728
## 1.8.0
2829

2930
- Generate `<builddir>/meson-vscode.env` to be used in `launch.json`'s `envFile`
30-
to run programs using Meson's developper environment.
31-
See https://mesonbuild.com/Commands.html#devenv
31+
to run programs using Meson's developper environment. See
32+
https://mesonbuild.com/Commands.html#devenv
3233

3334
## 1.7.1
3435

35-
- Track the version of linting tools, so that features of new versions may be used
36+
- Track the version of linting tools, so that features of new versions may be
37+
used
3638

3739
## 1.7.0
3840

39-
- Add `mesonbuild.debugOptions` configuration option. This allows to inject members into the debug configurations generated by this extension.
41+
- Add `mesonbuild.debugOptions` configuration option. This allows to inject
42+
members into the debug configurations generated by this extension.
4043
- Add gcc compiler errors to problem view
4144
- Allow opening meson.build files from tree-view
4245
- Add button to run configure from the tree-view
43-
- Add setupOptions, for options to pass exclusively to meson setup, but not meson configure
46+
- Add setupOptions, for options to pass exclusively to meson setup, but not
47+
meson configure
4448

4549
## 1.6.0
50+
4651
- Add highlighting for `add_project_dependencies()`
4752
- Add a meson DSL linter framework
4853
- Add a meson DSL formatter framework
4954
- Add [muon](https://muon.build) as a linting and formatting provider
5055
- Add `in` operator
5156

52-
5357
## 1.5.2
58+
5459
- Fix highlighting for `structured_sources()`
5560
- Add highlighting for `install_symlink()`
5661
- Add highlighting for `debug()`
57-
- Remove highlighting for obsolete `getext()` and `find_library()`. These have been deprecated for some time and will result in an error if used.
62+
- Remove highlighting for obsolete `getext()` and `find_library()`. These have
63+
been deprecated for some time and will result in an error if used.
5864
- Add highlighting for `unset_variable()`, `install_emptydir()`, and `range()`
5965

60-
6166
## 1.5.1
67+
6268
- Add highlighting for the new `structured_sources` function
6369

6470
## 1.5.0
71+
6572
- Update to the new Meson icon
6673
- Initial support for the vscode native testing API
6774
- Add support for vscode debug API
@@ -73,6 +80,7 @@
7380
- Update various deprecated vscode features and API usage
7481

7582
## 1.4.0
83+
7684
- Move to the mesonbuild project
7785
- syntax highlighting for dictionary literals, continue and break
7886
- Bugfix: tests and benchmarks with spaces in their names now work
@@ -83,23 +91,28 @@
8391
- Bugifx: Reload view on changes.
8492

8593
## 1.3.0
94+
8695
- Remove layout=flat from default options
8796
- Change default build folder to builddir
8897
- Add syntax highlighting for new builtins
8998

9099
## 1.2.0
100+
91101
- Add support for automatic task provider using `meson introspect`
92102
- Add code snippets
93103
- Add extension configuration
94104

95105
## 1.1.1
106+
96107
- Remove configuration for {} as special tokens
97108
- Add licensing information
98109

99110
## 1.1.0
111+
100112
- Add support for toggling comments
101113
- Auto-close brackets and strings
102114
- Add support for hex literals
103115

104116
## 1.0.0
117+
105118
- Initial release

0 commit comments

Comments
 (0)