Skip to content

Commit 414393c

Browse files
author
Pedro Cardenas
committed
first
0 parents  commit 414393c

File tree

132 files changed

+21570
-0
lines changed

Some content is hidden

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

132 files changed

+21570
-0
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

.gitattributes

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

.gitignore

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

0 commit comments

Comments
 (0)