Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
aurelius88 committed Jul 31, 2022
2 parents 14b01f4 + 694990a commit 61df089
Show file tree
Hide file tree
Showing 12 changed files with 2,131 additions and 386 deletions.
6 changes: 3 additions & 3 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
module.exports = {
env: {
es6: true,
es2020: true,
node: true
},
extends: "eslint:recommended",
parserOptions: {
ecmaVersion: 2017,
ecmaVersion: 2020,
sourceType: "script",
ecmaFeatures: {
impliedStrict: true
Expand Down Expand Up @@ -43,6 +43,6 @@ module.exports = {
ignorePattern: "^//\\s*"
}
],
"space-in-parens": ["warn", "always", { exceptions: ["{}", "[]"] }]
"space-in-parens": ["warn", "always", { exceptions: ["{}", "[]"] }],
}
};
11 changes: 10 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,16 @@
positions.json
opcodes.json
groups.json
*config.json
templates*.json

out
logs
opcodes
config.json

# Manifest-Generator
mani-gen*
manifest-gen*

#node
node_modules
16 changes: 16 additions & 0 deletions .manifestignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
.*
mani*

# module output
positions.json
opcodes.json
groups.json
*config.json
templates*.json

out
logs
opcodes

#node
node_modules
18 changes: 18 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
ISC License

Copyright 2020 aurelius88

Permission to use, copy, modify, and/or distribute this software
for any purpose with or without fee is hereby granted, provided
that the above copyright notice and this permission notice appear
in all copies.

THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS.
IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER
RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
OF THIS SOFTWARE.
Loading

0 comments on commit 61df089

Please sign in to comment.