Skip to content

Commit dc5b509

Browse files
committed
add plugin-net-api-controllers-and-dtos
1 parent 407fcf1 commit dc5b509

30 files changed

+7857
-0
lines changed
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"settings": {
3+
"param1": "param1-value",
4+
"param2": "param2-value",
5+
"array": [
6+
"array-value1",
7+
"array-value2"
8+
]
9+
}
10+
}
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: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# .NET API Controllers
2+
3+
## Overview
4+
5+
6+
7+
## Domain
8+
9+

0 commit comments

Comments
 (0)