Skip to content

Commit

Permalink
Initial public version
Browse files Browse the repository at this point in the history
  • Loading branch information
nielsbasjes committed Sep 17, 2019
0 parents commit 4f08980
Show file tree
Hide file tree
Showing 72 changed files with 9,060 additions and 0 deletions.
40 changes: 40 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
#
# Energy readers and parsers toolkit
# Copyright (C) 2019-2019 Niels Basjes
#
# This work is licensed under the Creative Commons
# Attribution-NonCommercial-NoDerivatives 4.0 International License.
#
# You may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://creativecommons.org/licenses/by-nc-nd/4.0/
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an AS IS BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
root = true

[*]
charset = utf-8
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
indent_style = space

[*.java]
indent_size = 4

[*.yaml]
indent_size = 2

[*.xml]
indent_size = 2

# Tab indentation (no size specified)
[Makefile]
indent_style = tab

72 changes: 72 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
#Antlr4
gen

#Maven
dependency-reduced-pom.xml

#Crashing eclipse
hs_err_pid*.log
tmp
debug-output

# Package Files #
*.jar
*.war
*.ear

target
*.bak
*.swp
*~
bin

#Eclipse stuff
.metadata
.settings
.classpath
.project

#IntelliJ stuff
.idea
*.iml
.attach_pid*

#test files
x
xx
y
yy
z
zz
result-*.yaml
__*

# Patches related
*.patch
*.diff
*.orig
*.rej

# Apache Pig logfiles
pig_[1-9][0-9]*.log

# Generated benchmark results
benchmarks/results/*.txt
benchmarks/*.csv
benchmarks/*.dat

# Local test files and scripts
testfiles
*.tar.gz

# LibreOffice lock file
.~lock.*

# Accidentally generated documentation site
_book
node_modules
docs/gitbook/gitbook-plugin-livereload/

# Special stuff
public_suffix_list.dat
analyzer/pitest/
1 change: 1 addition & 0 deletions CNAME
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
energy.basjes.nl
Loading

0 comments on commit 4f08980

Please sign in to comment.