Skip to content

Commit ce30f17

Browse files
authored
docs: allow prettier (aws#1861)
Ran prettier on docs and fixed some issues
1 parent 1ce636d commit ce30f17

File tree

4 files changed

+268
-252
lines changed

4 files changed

+268
-252
lines changed

.prettierignore

-1
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,4 @@ CHANGELOG.md
55
src/shared/telemetry/service-2.json
66
.changes
77
media/libs/vue.min.js
8-
docs/**
98
src/testFixtures/**

CODE_OF_CONDUCT.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
## Code of Conduct
2-
This project has adopted the [Amazon Open Source Code of Conduct](https://aws.github.io/code-of-conduct).
3-
For more information see the [Code of Conduct FAQ](https://aws.github.io/code-of-conduct-faq) or contact
1+
# Code of Conduct
2+
3+
This project has adopted the [Amazon Open Source Code of Conduct](https://aws.github.io/code-of-conduct).
4+
For more information see the [Code of Conduct FAQ](https://aws.github.io/code-of-conduct-faq) or contact
45
[email protected] with any additional questions or comments.

CONTRIBUTING.md

+94-88
Original file line numberDiff line numberDiff line change
@@ -61,12 +61,11 @@ You can also use these NPM tasks (see `npm run` for the full list):
6161
```
6262
npm run package
6363
```
64-
- This uses webpack which may exhaust the default Node heap size on Linux.
65-
To fix this set `--max-old-space-size`:
66-
67-
```
68-
export NODE_OPTIONS=--max-old-space-size=8192
69-
```
64+
- This uses webpack which may exhaust the default Node heap size on Linux.
65+
To fix this set `--max-old-space-size`:
66+
```
67+
export NODE_OPTIONS=--max-old-space-size=8192
68+
```
7069
- To build a "debug" VSIX artifact (faster and does not minify):
7170
```
7271
npm run package -- --debug
@@ -80,27 +79,28 @@ See [CODE_GUIDELINES.md](./docs/CODE_GUIDELINES.md) for coding conventions.
8079
8180
### Technical notes
8281
83-
- VSCode extensions have a [100MB](https://github.com/Microsoft/vscode-vsce/issues/179) file size limit.
84-
- `src/testFixtures/` is excluded in `.vscode/settings.json`, to prevent VSCode
85-
from treating its files as project files.
86-
- VSCode extension examples: https://github.com/microsoft/vscode-extension-samples
87-
- How to debug unresolved promise rejections:
82+
- VSCode extensions have a [100MB](https://github.com/Microsoft/vscode-vsce/issues/179) file size limit.
83+
- `src/testFixtures/` is excluded in `.vscode/settings.json`, to prevent VSCode
84+
from treating its files as project files.
85+
- VSCode extension examples: <https://github.com/microsoft/vscode-extension-samples>
86+
- How to debug unresolved promise rejections:
87+
8888
1. Declare a global unhandledRejection handler.
89-
```
90-
process.on('unhandledRejection', (e) => {
91-
getLogger('channel').error(
92-
localize(
93-
'AWS.channel.aws.toolkit.activation.error',
94-
'Error Activating {0} Toolkit: {1}',
95-
getIdeProperties().company,
96-
(e as Error).message
97-
)
98-
)
99-
if (e !== undefined) {
100-
throw e
101-
}
102-
});
103-
```
89+
```ts
90+
process.on('unhandledRejection', e => {
91+
getLogger('channel').error(
92+
localize(
93+
'AWS.channel.aws.toolkit.activation.error',
94+
'Error Activating {0} Toolkit: {1}',
95+
getIdeProperties().company,
96+
(e as Error).message
97+
)
98+
)
99+
if (e !== undefined) {
100+
throw e
101+
}
102+
})
103+
```
104104
2. Put a breakpoint on it.
105105
3. Run all tests.
106106
@@ -129,6 +129,7 @@ To run a single test in VSCode, do any one of:
129129
- Run the _Extension Tests (current file)_ launch-config.
130130
- Use Mocha's [it.only()](https://mochajs.org/#exclusive-tests) or `describe.only()`.
131131
- Run in your terminal:
132+
132133
- Unix/macOS/POSIX shell:
133134
```
134135
NO_COVERAGE=true TEST_FILE=src/test/foo.test npm run test
@@ -137,6 +138,7 @@ To run a single test in VSCode, do any one of:
137138
```
138139
$Env:NO_COVERAGE = "true"; $Env:TEST_FILE = "src/test/foo.test"; npm run test
139140
```
141+
140142
- To run all tests in a particular subdirectory, you can edit
141143
`src/test/index.ts:rootTestsPath` to point to a subdirectory:
142144
```
@@ -176,15 +178,16 @@ message, ask why. Source control (Git) is our source-of-truth, not GitHub.
176178
177179
Quick summary of commit message guidelines:
178180
179-
- Subject: single line up to 50-72 characters
180-
- Imperative voice ("Fix bug", not "Fixed"/"Fixes"/"Fixing").
181-
- Body: for non-trivial or uncommon changes, explain your motivation for the
182-
change and contrast your implementation with previous behavior.
183-
- Often you can save a _lot_ of words by using this simple template:
184-
```
185-
Problem: …
186-
Solution: …
187-
```
181+
- Subject: single line up to 50-72 characters
182+
- Imperative voice ("Fix bug", not "Fixed"/"Fixes"/"Fixing").
183+
- Body: for non-trivial or uncommon changes, explain your motivation for the
184+
change and contrast your implementation with previous behavior.
185+
186+
- Often you can save a _lot_ of words by using this simple template:
187+
```
188+
Problem: …
189+
Solution: …
190+
```
188191
189192
A [good commit message](https://git-scm.com/book/en/v2/Distributed-Git-Contributing-to-a-Project)
190193
has a short subject line and unlimited detail in the body.
@@ -225,72 +228,75 @@ a TypeScript `*.d.ts` file and pass that to the AWS JS SDK to create
225228
requests just from the model/types.
226229
227230
1. Add an entry to the list in `generateServiceClient.ts`:
228-
```diff
229-
diff --git a/build-scripts/generateServiceClient.ts b/build-scripts/generateServiceClient.ts
230-
index 8bb278972d29..6c6914ec8812 100644
231-
--- a/build-scripts/generateServiceClient.ts
232-
+++ b/build-scripts/generateServiceClient.ts
233-
@@ -199,6 +199,10 @@ ${fileContents}
234-
;(async () => {
235-
const serviceClientDefinitions: ServiceClientDefinition[] = [
236-
+ {
237-
+ serviceJsonPath: 'src/shared/foo.api.json',
238-
+ serviceName: 'ClientFoo'
239-
+ },
240-
{
241-
serviceJsonPath: 'src/shared/telemetry/service-2.json',
242-
serviceName: 'ClientTelemetry',
243-
```
231+
```diff
232+
diff --git a/build-scripts/generateServiceClient.ts b/build-scripts/generateServiceClient.ts
233+
index 8bb278972d29..6c6914ec8812 100644
234+
--- a/build-scripts/generateServiceClient.ts
235+
+++ b/build-scripts/generateServiceClient.ts
236+
@@ -199,6 +199,10 @@ ${fileContents}
237+
;(async () => {
238+
const serviceClientDefinitions: ServiceClientDefinition[] = [
239+
+ {
240+
+ serviceJsonPath: 'src/shared/foo.api.json',
241+
+ serviceName: 'ClientFoo'
242+
+ },
243+
{
244+
serviceJsonPath: 'src/shared/telemetry/service-2.json',
245+
serviceName: 'ClientTelemetry',
246+
```
244247
2. Run the script:
245-
```
246-
$ ./node_modules/.bin/ts-node ./build-scripts/generateServiceClient.ts
247-
```
248+
```
249+
./node_modules/.bin/ts-node ./build-scripts/generateServiceClient.ts
250+
```
248251
3. The script produces a `*.d.ts` file (used only for IDE
249252
code-completion, not required to actually make requests):
250-
```
251-
src/shared/foo.d.ts
252-
```
253+
```
254+
src/shared/foo.d.ts
255+
```
253256
4. To make requests with the SDK, pass the `*.api.json` service model to
254257
`ext.sdkClientBuilder.createAndConfigureServiceClient` as a generic
255258
`Service` with `apiConfig=require('foo.api.json')`.
256-
```
257-
// Import the `*.d.ts` file for code-completion convenience.
258-
import * as ClientFoo from '../shared/clientfoo'
259-
// The AWS JS SDK uses this to dynamically build service requests.
260-
import apiConfig = require('../shared/foo.api.json')
261-
262-
...
263-
264-
const c = await ext.sdkClientBuilder.createAndConfigureServiceClient(
265-
opts => new Service(opts),
266-
{
267-
apiConfig: apiConfig,
268-
region: 'us-west-2',
269-
credentials: credentials,
270-
correctClockSkew: true,
271-
endpoint: 'foo-beta.aws.dev',
272-
}) as ClientFoo
273-
const req = c.getThing({ id: 'asdf' })
274-
req.send(function (err, data) { ... });
275-
```
259+
260+
```ts
261+
// Import the `*.d.ts` file for code-completion convenience.
262+
import * as ClientFoo from '../shared/clientfoo'
263+
// The AWS JS SDK uses this to dynamically build service requests.
264+
import apiConfig = require('../shared/foo.api.json')
265+
266+
...
267+
268+
const c = await ext.sdkClientBuilder.createAwsService(
269+
opts => new Service(opts),
270+
{
271+
apiConfig: apiConfig,
272+
region: 'us-west-2',
273+
credentials: credentials,
274+
correctClockSkew: true,
275+
endpoint: 'foo-beta.aws.dev',
276+
}) as ClientFoo
277+
const req = c.getThing({ id: 'asdf' })
278+
req.send(function (err, data) { ... });
279+
```
276280
277281
## Importing icons from other open source repos
278282
279283
If you are contribuing visual assets from other open source repos, the source repo must have a compatible license (such as MIT), and we need to document the source of the images. Follow these steps:
280284
281-
1. Use a separate location in this repo for every repo where images are
282-
sourced from, in the form `third-party/resources/from-<BRIEF_REPO_NAME>`.
283-
1. Copy the source repo's licence into this destination location's LICENSE.txt file
284-
1. Create a README.md in the destination location, and type in a copyright attribution:
285-
```text
286-
The AWS Toolkit for VS Code includes the following third-party software/licensing:
285+
1. Use a separate location in this repo for every repo where images are
286+
sourced from, in the form `third-party/resources/from-<BRIEF_REPO_NAME>`.
287+
1. Copy the source repo's licence into this destination location's LICENSE.txt file
288+
1. Create a README.md in the destination location, and type in a copyright attribution:
289+
290+
```text
291+
The AWS Toolkit for VS Code includes the following third-party software/licensing:
287292
288-
Icons contained in this folder and subfolders are from <SOURCE_REPO_NAME>: <SOURCE_REPO_URL>
293+
Icons contained in this folder and subfolders are from <SOURCE_REPO_NAME>: <SOURCE_REPO_URL>
294+
295+
<PASTE_SOURCE_LICENSE_HERE>
296+
```
289297
290-
<PASTE_SOURCE_LICENSE_HERE>
291-
```
292-
1. Copy the SVG file(s) into a suitable place within the destination location, for example `.../dark/xyz.svg` and `.../light/xyz.svg`
293-
1. Add an entry to `third-party/README.md` summarizing the new destination location, where the asserts were sourced from, and a brief rationale.
298+
1. Copy the SVG file(s) into a suitable place within the destination location, for example `.../dark/xyz.svg` and `.../light/xyz.svg`
299+
1. Add an entry to `third-party/README.md` summarizing the new destination location, where the asserts were sourced from, and a brief rationale.
294300
295301
[PR #227](https://github.com/aws/aws-toolkit-vscode/pull/227) shows an example.
296302

0 commit comments

Comments
 (0)