Skip to content

Commit

Permalink
add plugin-net-api-controllers-and-dtos
Browse files Browse the repository at this point in the history
  • Loading branch information
yuval-hazaz committed Feb 17, 2025
1 parent 407fcf1 commit dc5b509
Show file tree
Hide file tree
Showing 30 changed files with 7,857 additions and 0 deletions.
10 changes: 10 additions & 0 deletions blueprint-plugins/net-api-controllers-and-dtos/.amplicationrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"settings": {
"param1": "param1-value",
"param2": "param2-value",
"array": [
"array-value1",
"array-value2"
]
}
}
7 changes: 7 additions & 0 deletions blueprint-plugins/net-api-controllers-and-dtos/.eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
node_modules
**/node_modules
dist
**/src/models.ts
**/*.stories.tsx
coverage
src/static
31 changes: 31 additions & 0 deletions blueprint-plugins/net-api-controllers-and-dtos/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
"env": {
"node": true,
"es2021": true
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2021,
"sourceType": "module"
},
"plugins": ["@typescript-eslint", "prettier"],
"rules": {
"@typescript-eslint/no-unused-vars": [
"warn",
{ "argsIgnorePattern": "^_", "varsIgnorePattern": "^_" }
],
"@typescript-eslint/no-explicit-any": "warn",
"@typescript-eslint/explicit-function-return-type": [
"warn",
{ "allowExpressions": true }
],
"no-console": "warn",
"prettier/prettier": ["error"]
},
"ignorePatterns": ["node_modules/", "dist/", "build/", ".eslintrc.js"]
}
62 changes: 62 additions & 0 deletions blueprint-plugins/net-api-controllers-and-dtos/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
# See http://help.github.com/ignore-files/ for more about ignoring files.

# compiled output

tmp
/out-tsc

# dependencies
node_modules
**/node_modules/

# IDEs and editors
/.idea
.project
.classpath
.c9/
*.launch
.settings/
*.sublime-workspace

# IDE - VSCode
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
*.code-workspace

# Local History for Visual Studio Code
.history/

# Common credential files
**/credentials.json
**/client_secrets.json
**/client_secret.json
*.dat
*.httr-oauth*

# Terraform development
**/.terraform.lock.hcl
**/.terraform
**/terraform.tfstate
**/terraform.tfstate.backup

# misc
/.sass-cache
/connect.lock
**/coverage/
/libpeerconnection.log
npm-debug.log
yarn-error.log
testem.log
/typings


# System Files
.DS_Store
Thumbs.db

.nx/cache

.env.local
2 changes: 2 additions & 0 deletions blueprint-plugins/net-api-controllers-and-dtos/.npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
.prettierignore
.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
dist
5 changes: 5 additions & 0 deletions blueprint-plugins/net-api-controllers-and-dtos/.prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"$schema": "http://json.schemastore.org/prettierrc",
"singleQuote": false,
"trailingComma": "all"
}
9 changes: 9 additions & 0 deletions blueprint-plugins/net-api-controllers-and-dtos/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# .NET API Controllers

## Overview



## Domain


Loading

0 comments on commit dc5b509

Please sign in to comment.