Skip to content

Commit 83ad9d9

Browse files
authored
Merge branch 'master' into itainathaniel-change-text
2 parents 80ab820 + 5f1e70d commit 83ad9d9

File tree

129 files changed

+23024
-3
lines changed

Some content is hidden

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

129 files changed

+23024
-3
lines changed

.github/workflows/ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ env:
1515
jobs:
1616
ci:
1717
name: Continuous Integration
18-
runs-on: ubuntu-20.04
18+
runs-on: ubuntu-latest
1919
steps:
2020
- name: Checkout repository
2121
uses: actions/checkout@v4
@@ -90,7 +90,7 @@ jobs:
9090
- name: Get current latest plugin version from the base branch
9191
id: get-current-latest-version
9292
run: |
93-
PLUGIN_PATH="plugins/${{ matrix.affected-plugin }}/package.json"
93+
PLUGIN_PATH="plugins/${{ matrix.affected-plugin }}/package.json"
9494
echo "version=$(cat $PLUGIN_PATH | jq -r '.version')" >> $GITHUB_OUTPUT
9595
9696
- name: Check if versions are equal

.github/workflows/nx.template.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ env:
2424
jobs:
2525
nx:
2626
name: Nx Affected Publishable Plugins
27-
runs-on: ubuntu-20.04
27+
runs-on: ubuntu-latest
2828
outputs:
2929
affected-plugins: ${{ steps.calculate-affected.outputs.affected-plugins }}
3030
steps:
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"settings": {}
3+
}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
node_modules
2+
**/node_modules
3+
dist
4+
**/src/models.ts
5+
**/*.stories.tsx
6+
coverage
7+
src/static
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
{
2+
"env": {
3+
"node": true,
4+
"es2021": true
5+
},
6+
"extends": [
7+
"eslint:recommended",
8+
"plugin:@typescript-eslint/recommended",
9+
"plugin:prettier/recommended"
10+
],
11+
"parser": "@typescript-eslint/parser",
12+
"parserOptions": {
13+
"ecmaVersion": 2021,
14+
"sourceType": "module"
15+
},
16+
"plugins": ["@typescript-eslint", "prettier"],
17+
"rules": {
18+
"@typescript-eslint/no-unused-vars": [
19+
"warn",
20+
{ "argsIgnorePattern": "^_", "varsIgnorePattern": "^_" }
21+
],
22+
"@typescript-eslint/no-explicit-any": "warn",
23+
"@typescript-eslint/explicit-function-return-type": [
24+
"warn",
25+
{ "allowExpressions": true }
26+
],
27+
"no-console": "warn",
28+
"prettier/prettier": ["error"]
29+
},
30+
"ignorePatterns": ["node_modules/", "dist/", "build/", ".eslintrc.js"]
31+
}
Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
# See http://help.github.com/ignore-files/ for more about ignoring files.
2+
3+
# compiled output
4+
5+
tmp
6+
/out-tsc
7+
8+
# dependencies
9+
node_modules
10+
**/node_modules/
11+
12+
# IDEs and editors
13+
/.idea
14+
.project
15+
.classpath
16+
.c9/
17+
*.launch
18+
.settings/
19+
*.sublime-workspace
20+
21+
# IDE - VSCode
22+
.vscode/*
23+
!.vscode/settings.json
24+
!.vscode/tasks.json
25+
!.vscode/launch.json
26+
!.vscode/extensions.json
27+
*.code-workspace
28+
29+
# Local History for Visual Studio Code
30+
.history/
31+
32+
# Common credential files
33+
**/credentials.json
34+
**/client_secrets.json
35+
**/client_secret.json
36+
*.dat
37+
*.httr-oauth*
38+
39+
# Terraform development
40+
**/.terraform.lock.hcl
41+
**/.terraform
42+
**/terraform.tfstate
43+
**/terraform.tfstate.backup
44+
45+
# misc
46+
/.sass-cache
47+
/connect.lock
48+
**/coverage/
49+
/libpeerconnection.log
50+
npm-debug.log
51+
yarn-error.log
52+
testem.log
53+
/typings
54+
55+
56+
# System Files
57+
.DS_Store
58+
Thumbs.db
59+
60+
.nx/cache
61+
62+
.env.local
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
.prettierignore
2+
.gitignore
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
dist
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"$schema": "http://json.schemastore.org/prettierrc",
3+
"singleQuote": false,
4+
"trailingComma": "all"
5+
}
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# blueprint-dotnet-formatter
2+
3+
## Overview
4+
5+
This plugin is used to format .NET generated code using csharpier.
6+
7+
## Usage
8+
9+
When building plugins for .NET services, you can use this plugin to format the generated code.
10+
11+
Install this plugins on your resource or template as the last plugin.
12+
13+
It will format all the files from the context.files map.
14+
15+
## Settings
16+
17+
This plugin has no settings.
18+
19+
## Compatibility
20+
21+
This plugin is compatible with Amplication's Blueprint Engine.

0 commit comments

Comments
 (0)