Skip to content
This repository was archived by the owner on Nov 5, 2021. It is now read-only.

Commit bb1f806

Browse files
committed
Improving terraform hcl
2 parents d5ed46a + 3efc637 commit bb1f806

File tree

157 files changed

+52624
-38652
lines changed

Some content is hidden

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

157 files changed

+52624
-38652
lines changed

.prettierrc

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"arrowParens": "always",
3+
"singleQuote": true,
4+
"trailingComma": "none",
5+
"semi": true,
6+
"useTabs": true
7+
}

.vscode/launch.json

+26-28
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,28 @@
11
{
2-
"version": "0.2.0",
3-
"configurations": [
4-
{
5-
"name": "Unit Tests",
6-
"type": "node",
7-
"request": "launch",
8-
"program": "${workspaceRoot}/node_modules/.bin/tape",
9-
"stopOnEntry": false,
10-
"args": [
11-
"-r",
12-
"./test/all.js",
13-
// "--grep",
14-
// "typescript"
15-
],
16-
"cwd": "${workspaceRoot}",
17-
"preLaunchTask": null,
18-
"runtimeExecutable": null,
19-
"runtimeArgs": [
20-
"--nolazy"
21-
],
22-
"env": {
23-
"NODE_ENV": "development"
24-
},
25-
"console": "internalConsole",
26-
"sourceMaps": false,
27-
"outDir": null
28-
}
29-
]
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"name": "Unit Tests",
6+
"type": "node",
7+
"request": "launch",
8+
"program": "${workspaceRoot}/node_modules/.bin/tape",
9+
"stopOnEntry": false,
10+
"args": [
11+
"-r",
12+
"./test/all.js"
13+
// "--grep",
14+
// "typescript"
15+
],
16+
"cwd": "${workspaceRoot}",
17+
"preLaunchTask": null,
18+
"runtimeExecutable": null,
19+
"runtimeArgs": ["--nolazy"],
20+
"env": {
21+
"NODE_ENV": "development"
22+
},
23+
"console": "internalConsole",
24+
"sourceMaps": false,
25+
"outDir": null
26+
}
27+
]
3028
}

LICENSE.md

+21-21
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
1-
The MIT License (MIT)
2-
3-
Copyright (c) Microsoft Corporation
4-
5-
Permission is hereby granted, free of charge, to any person obtaining a copy
6-
of this software and associated documentation files (the "Software"), to deal
7-
in the Software without restriction, including without limitation the rights
8-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9-
copies of the Software, and to permit persons to whom the Software is
10-
furnished to do so, subject to the following conditions:
11-
12-
The above copyright notice and this permission notice shall be included in all
13-
copies or substantial portions of the Software.
14-
15-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21-
SOFTWARE.
1+
The MIT License (MIT)
2+
3+
Copyright (c) Microsoft Corporation
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

+39-38
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,39 @@
1-
# Monaco Languages [![Build Status](https://dev.azure.com/ms/monaco-languages/_apis/build/status/microsoft.monaco-languages?branchName=master)](https://dev.azure.com/ms/monaco-languages/_build/latest?definitionId=140&branchName=master)
2-
3-
Colorization and configuration supports for multiple languages for the Monaco Editor:
4-
5-
![monaco-languages](https://cloud.githubusercontent.com/assets/5047891/15938606/1fd4bac6-2e74-11e6-8839-d455da8bc8a7.gif)
6-
7-
## Issues
8-
9-
Please file issues concerning `monaco-languages` in the [`monaco-editor`-repository](https://github.com/Microsoft/monaco-editor/issues).
10-
11-
## Installing
12-
13-
This npm module is bundled and distributed in the [monaco-editor](https://www.npmjs.com/package/monaco-editor) npm module.
14-
15-
## Dev: cheat sheet
16-
17-
* initial setup with `npm install .`
18-
* compile with `npm run watch`
19-
* test with `npm run test`
20-
* bundle with `npm run prepublishOnly`
21-
22-
## Dev: Adding a new language
23-
24-
* create `$/src/myLang/myLang.contribution.ts`
25-
* create `$/src/myLang/myLang.ts`
26-
* create `$/src/myLang/myLang.test.ts`
27-
* edit `$/src/monaco.contribution.ts` and register your new language
28-
```js
29-
import './myLang/myLang.contribution';
30-
```
31-
32-
## Code of Conduct
33-
34-
This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [[email protected]](mailto:[email protected]) with any additional questions or comments.
35-
36-
37-
## License
38-
[MIT](https://github.com/Microsoft/monaco-languages/blob/master/LICENSE.md)
1+
# Monaco Languages [![Build Status](https://dev.azure.com/ms/monaco-languages/_apis/build/status/microsoft.monaco-languages?branchName=master)](https://dev.azure.com/ms/monaco-languages/_build/latest?definitionId=140&branchName=master)
2+
3+
Colorization and configuration supports for multiple languages for the Monaco Editor:
4+
5+
![monaco-languages](https://cloud.githubusercontent.com/assets/5047891/15938606/1fd4bac6-2e74-11e6-8839-d455da8bc8a7.gif)
6+
7+
## Issues
8+
9+
Please file issues concerning `monaco-languages` in the [`monaco-editor`-repository](https://github.com/Microsoft/monaco-editor/issues).
10+
11+
## Installing
12+
13+
This npm module is bundled and distributed in the [monaco-editor](https://www.npmjs.com/package/monaco-editor) npm module.
14+
15+
## Dev: cheat sheet
16+
17+
- initial setup with `npm install .`
18+
- compile with `npm run watch`
19+
- test with `npm run test`
20+
- bundle with `npm run prepublishOnly`
21+
22+
## Dev: Adding a new language
23+
24+
- create `$/src/myLang/myLang.contribution.ts`
25+
- create `$/src/myLang/myLang.ts`
26+
- create `$/src/myLang/myLang.test.ts`
27+
- edit `$/src/monaco.contribution.ts` and register your new language
28+
29+
```js
30+
import './myLang/myLang.contribution';
31+
```
32+
33+
## Code of Conduct
34+
35+
This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [[email protected]](mailto:[email protected]) with any additional questions or comments.
36+
37+
## License
38+
39+
[MIT](https://github.com/Microsoft/monaco-languages/blob/master/LICENSE.md)

azure-pipelines.yml

+14-14
Original file line numberDiff line numberDiff line change
@@ -4,25 +4,25 @@
44
# https://docs.microsoft.com/azure/devops/pipelines/languages/javascript
55

66
trigger:
7-
- master
7+
- master
88

99
pool:
1010
vmImage: 'ubuntu-latest'
1111

1212
steps:
13-
- task: NodeTool@0
14-
inputs:
15-
versionSpec: '10.x'
16-
displayName: 'Install Node.js'
13+
- task: NodeTool@0
14+
inputs:
15+
versionSpec: '10.x'
16+
displayName: 'Install Node.js'
1717

18-
- script: |
19-
npm install
20-
displayName: 'npm install'
18+
- script: |
19+
npm install
20+
displayName: 'npm install'
2121
22-
- script: |
23-
npm run compile
24-
displayName: 'compile'
22+
- script: |
23+
npm run compile
24+
displayName: 'compile'
2525
26-
- script: |
27-
npm test
28-
displayName: 'test'
26+
- script: |
27+
npm test
28+
displayName: 'test'

0 commit comments

Comments
 (0)