Skip to content

Commit 0e3afbe

Browse files
Initial commit
1 parent 2ae255a commit 0e3afbe

File tree

4,213 files changed

+369482
-2
lines changed

Some content is hidden

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

4,213 files changed

+369482
-2
lines changed

Diff for: .editorconfig

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# EditorConfig helps developers define and maintain consistent
2+
# coding styles between different editors and IDEs
3+
# editorconfig.org
4+
5+
root = true
6+
7+
[*]
8+
9+
# We recommend you to keep these unchanged
10+
end_of_line = lf
11+
charset = utf-8
12+
trim_trailing_whitespace = true
13+
insert_final_newline = true
14+
15+
# Change these settings to your own preference
16+
indent_style = space
17+
indent_size = 4
18+
19+
[*.{ts,tsx,js,jsx,json,css,scss,yml}]
20+
indent_size = 2
21+
22+
[*.md]
23+
trim_trailing_whitespace = false

Diff for: .eslintignore

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
node_modules/
2+
src/main/docker/
3+
src/test/javascript/protractor.conf.js
4+
src/test/javascript/jest.conf.js
5+
webpack/
6+
target/
7+
build/
8+
node/
9+
postcss.config.js

Diff for: .eslintrc.json

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"plugins": ["@typescript-eslint/tslint"],
3+
"extends": ["jhipster"],
4+
"parserOptions": {
5+
"project": "./tsconfig.base.json"
6+
},
7+
"rules": {
8+
"@typescript-eslint/tslint/config": [
9+
"error",
10+
{
11+
"lintFile": "./tslint.json"
12+
}
13+
],
14+
"@typescript-eslint/no-unused-vars": [
15+
"warn",
16+
{
17+
"vars": "all",
18+
"args": "after-used",
19+
"ignoreRestSiblings": false
20+
}
21+
],
22+
"@typescript-eslint/no-non-null-assertion": "off",
23+
"@typescript-eslint/camelcase": "off"
24+
}
25+
}

Diff for: .gitattributes

+150
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,150 @@
1+
# This file is inspired by https://github.com/alexkaratarakis/gitattributes
2+
#
3+
# Auto detect text files and perform LF normalization
4+
# http://davidlaing.com/2012/09/19/customise-your-gitattributes-to-become-a-git-ninja/
5+
* text=auto
6+
7+
# The above will handle all files NOT found below
8+
# These files are text and should be normalized (Convert crlf => lf)
9+
10+
*.bat text eol=crlf
11+
*.cmd text eol=crlf
12+
*.ps1 text eol=crlf
13+
*.coffee text
14+
*.css text
15+
*.cql text
16+
*.df text
17+
*.ejs text
18+
*.html text
19+
*.java text
20+
*.js text
21+
*.json text
22+
*.less text
23+
*.properties text
24+
*.sass text
25+
*.scss text
26+
*.sh text eol=lf
27+
*.sql text
28+
*.txt text
29+
*.ts text
30+
*.xml text
31+
*.yaml text
32+
*.yml text
33+
34+
# Documents
35+
*.doc diff=astextplain
36+
*.DOC diff=astextplain
37+
*.docx diff=astextplain
38+
*.DOCX diff=astextplain
39+
*.dot diff=astextplain
40+
*.DOT diff=astextplain
41+
*.pdf diff=astextplain
42+
*.PDF diff=astextplain
43+
*.rtf diff=astextplain
44+
*.RTF diff=astextplain
45+
*.markdown text
46+
*.md text
47+
*.adoc text
48+
*.textile text
49+
*.mustache text
50+
*.csv text
51+
*.tab text
52+
*.tsv text
53+
*.txt text
54+
AUTHORS text
55+
CHANGELOG text
56+
CHANGES text
57+
CONTRIBUTING text
58+
COPYING text
59+
copyright text
60+
*COPYRIGHT* text
61+
INSTALL text
62+
license text
63+
LICENSE text
64+
NEWS text
65+
readme text
66+
*README* text
67+
TODO text
68+
69+
# Graphics
70+
*.png binary
71+
*.jpg binary
72+
*.jpeg binary
73+
*.gif binary
74+
*.tif binary
75+
*.tiff binary
76+
*.ico binary
77+
# SVG treated as an asset (binary) by default. If you want to treat it as text,
78+
# comment-out the following line and uncomment the line after.
79+
*.svg binary
80+
#*.svg text
81+
*.eps binary
82+
83+
# These files are binary and should be left untouched
84+
# (binary is a macro for -text -diff)
85+
*.class binary
86+
*.jar binary
87+
*.war binary
88+
89+
## LINTERS
90+
.csslintrc text
91+
.eslintrc text
92+
.jscsrc text
93+
.jshintrc text
94+
.jshintignore text
95+
.stylelintrc text
96+
97+
## CONFIGS
98+
*.conf text
99+
*.config text
100+
.editorconfig text
101+
.gitattributes text
102+
.gitconfig text
103+
.gitignore text
104+
.htaccess text
105+
*.npmignore text
106+
107+
## HEROKU
108+
Procfile text
109+
.slugignore text
110+
111+
## AUDIO
112+
*.kar binary
113+
*.m4a binary
114+
*.mid binary
115+
*.midi binary
116+
*.mp3 binary
117+
*.ogg binary
118+
*.ra binary
119+
120+
## VIDEO
121+
*.3gpp binary
122+
*.3gp binary
123+
*.as binary
124+
*.asf binary
125+
*.asx binary
126+
*.fla binary
127+
*.flv binary
128+
*.m4v binary
129+
*.mng binary
130+
*.mov binary
131+
*.mp4 binary
132+
*.mpeg binary
133+
*.mpg binary
134+
*.swc binary
135+
*.swf binary
136+
*.webm binary
137+
138+
## ARCHIVES
139+
*.7z binary
140+
*.gz binary
141+
*.rar binary
142+
*.tar binary
143+
*.zip binary
144+
145+
## FONTS
146+
*.ttf binary
147+
*.eot binary
148+
*.otf binary
149+
*.woff binary
150+
*.woff2 binary

Diff for: .gitignore

+149
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,149 @@
1+
######################
2+
# Project Specific
3+
######################
4+
/src/main/webapp/content/css/main.css
5+
/target/classes/static/**
6+
/src/test/javascript/coverage/
7+
8+
######################
9+
# Node
10+
######################
11+
/node/
12+
node_tmp/
13+
node_modules/
14+
npm-debug.log.*
15+
/.awcache/*
16+
/.cache-loader/*
17+
package-lock.json
18+
19+
######################
20+
# SASS
21+
######################
22+
.sass-cache/
23+
24+
######################
25+
# Eclipse
26+
######################
27+
*.pydevproject
28+
.project
29+
.metadata
30+
tmp/
31+
tmp/**/*
32+
*.tmp
33+
*.bak
34+
*.swp
35+
*~.nib
36+
local.properties
37+
.classpath
38+
.settings/
39+
.loadpath
40+
.factorypath
41+
/src/main/resources/rebel.xml
42+
43+
# External tool builders
44+
.externalToolBuilders/**
45+
46+
# Locally stored "Eclipse launch configurations"
47+
*.launch
48+
49+
# CDT-specific
50+
.cproject
51+
52+
# PDT-specific
53+
.buildpath
54+
55+
# STS-specific
56+
/.sts4-cache/*
57+
58+
######################
59+
# IntelliJ
60+
######################
61+
.idea/
62+
*.iml
63+
*.iws
64+
*.ipr
65+
*.ids
66+
*.orig
67+
classes/
68+
out/
69+
70+
######################
71+
# Visual Studio Code
72+
######################
73+
.vscode/
74+
75+
######################
76+
# Maven
77+
######################
78+
/log/
79+
/target/
80+
81+
######################
82+
# Gradle
83+
######################
84+
.gradle/
85+
/build/
86+
87+
######################
88+
# Package Files
89+
######################
90+
*.jar
91+
*.war
92+
*.ear
93+
*.db
94+
95+
######################
96+
# Windows
97+
######################
98+
# Windows image file caches
99+
Thumbs.db
100+
101+
# Folder config file
102+
Desktop.ini
103+
104+
######################
105+
# Mac OSX
106+
######################
107+
.DS_Store
108+
.svn
109+
110+
# Thumbnails
111+
._*
112+
113+
# Files that might appear on external disk
114+
.Spotlight-V100
115+
.Trashes
116+
117+
######################
118+
# Directories
119+
######################
120+
/bin/
121+
/deploy/
122+
123+
######################
124+
# Logs
125+
######################
126+
*.log*
127+
128+
######################
129+
# Others
130+
######################
131+
*.class
132+
*.*~
133+
*~
134+
.merge_file*
135+
136+
######################
137+
# Gradle Wrapper
138+
######################
139+
!gradle/wrapper/gradle-wrapper.jar
140+
141+
######################
142+
# Maven Wrapper
143+
######################
144+
!.mvn/wrapper/maven-wrapper.jar
145+
146+
######################
147+
# ESLint
148+
######################
149+
.eslintcache

Diff for: .huskyrc

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"hooks": {
3+
"pre-commit": "lint-staged"
4+
}
5+
}

Diff for: .jhipster/AllowedPmUsers.json

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{
2+
"name": "AllowedPmUsers",
3+
"fields": [
4+
{
5+
"fieldName": "userId",
6+
"fieldType": "String",
7+
"fieldValidateRules": ["required"]
8+
},
9+
{
10+
"fieldName": "allowedPmUserId",
11+
"fieldType": "String",
12+
"fieldValidateRules": ["required"]
13+
}
14+
],
15+
"relationships": [],
16+
"changelogDate": "20210524110339",
17+
"entityTableName": "allowed_pm_users",
18+
"dto": "mapstruct",
19+
"pagination": "pagination",
20+
"service": "serviceImpl",
21+
"jpaMetamodelFiltering": false,
22+
"fluentMethods": true,
23+
"readOnly": false,
24+
"embedded": false,
25+
"clientRootFolder": "",
26+
"applications": "*",
27+
"enableEntityAudit": true
28+
}

0 commit comments

Comments
 (0)