Skip to content

Commit a31f35b

Browse files
committed
automatic project update
1 parent cec8359 commit a31f35b

File tree

315 files changed

+46338
-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.

315 files changed

+46338
-2
lines changed

.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

.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

.eslintrc.json

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
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+
}
24+
}

.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

.gitignore

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

.huskyrc

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

.lintstagedrc.js

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module.exports = {
2+
'{,src/**/}*.{json,md,yml,ts,css,scss}': ['prettier --write', 'git add']
3+
};

.prettierignore

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
node_modules
2+
target
3+
build
4+
package-lock.json
5+
.git
6+
.mvn
7+
gradle
8+
.gradle

.prettierrc

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Prettier configuration
2+
3+
printWidth: 140
4+
singleQuote: true
5+
tabWidth: 2
6+
useTabs: false
7+
8+
# js and ts rules:
9+
arrowParens: avoid
10+
11+
# jsx and tsx rules:
12+
jsxBracketSameLine: false

.yo-rc.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"testFrameworks": ["gatling", "protractor"],
1919
"languages": ["en"],
2020
"serverPort": 8080,
21-
"jhipsterVersion": "6.10.3",
21+
"jhipsterVersion": "6.10.4",
2222
"enableSocialSignIn": false,
2323
"useSass": true,
2424
"jhiPrefix": "jhi",

0 commit comments

Comments
 (0)