Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
Necrelox committed Oct 3, 2024
2 parents e3e9816 + 82b0a3e commit 8b807fe
Show file tree
Hide file tree
Showing 51 changed files with 743 additions and 588 deletions.
22 changes: 8 additions & 14 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
{
"env": {
"browser": true,
"es2021": true
},
"extends": [
"eslint:all",
"plugin:@typescript-eslint/recommended"
Expand All @@ -19,20 +15,16 @@
},
"ignorePatterns": [
"node_modules/*",
"Configs/*",
"**/*.spec.ts",
"Build/*"
"build/*"
],
"rules": {
"tsdoc/syntax": "error",
"indent": [
"error",
4
],
"linebreak-style": [
"error",
"unix"
],
"linebreak-style": "off",
"quotes": [
"error",
"single"
Expand All @@ -45,7 +37,7 @@
"@typescript-eslint/array-type": [
"error",
{
"default": "array-simple"
"default": "array"
}
],
"@typescript-eslint/await-thenable": "error",
Expand Down Expand Up @@ -97,7 +89,7 @@
"@typescript-eslint/max-params": [
"error",
{
"max": 4
"max": 5
}
],
"@typescript-eslint/member-ordering": "off",
Expand Down Expand Up @@ -137,7 +129,7 @@
"@typescript-eslint/no-unsafe-call": "off",
"@typescript-eslint/no-unsafe-declaration-merging": "error",
"@typescript-eslint/no-unsafe-enum-comparison": "error",
"@typescript-eslint/no-unsafe-member-access": "error",
"@typescript-eslint/no-unsafe-member-access": "off",
"@typescript-eslint/no-unsafe-return": "error",
"no-unused-expressions": "off",
"@typescript-eslint/no-unused-expressions": "error",
Expand Down Expand Up @@ -178,6 +170,7 @@
"max-statements": "off",
"no-ternary": "off",
"no-plusplus": "off",
"no-param-reassign": "off",
"id-length": "off",
"max-lines": "off",
"no-undefined": "off",
Expand Down Expand Up @@ -267,4 +260,5 @@
"always"
]
}
}
}

9 changes: 7 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
.idea
Build
.vscode

build
docs/
coverage/

node_modules
coverage

tsconfig.tsbuildinfo
16 changes: 11 additions & 5 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -1,13 +1,19 @@
.eslintrc
.github

.idea
.nvmrc
.vscode
coverage/

.nvmrc

docs/
Configs/
Source/
Tests/
coverage/

source/
tests/

bundler.config.ts
tsconfig.json
tsconfig.tsbuildinfo

CHANGELOG.md
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v22.6.0
v22.9.0
27 changes: 0 additions & 27 deletions Configs/esbuild.config.js

This file was deleted.

8 changes: 0 additions & 8 deletions Source/App.ts

This file was deleted.

27 changes: 0 additions & 27 deletions Source/Common/Error/ErrorKeys.ts

This file was deleted.

2 changes: 0 additions & 2 deletions Source/Common/Error/index.ts

This file was deleted.

19 changes: 0 additions & 19 deletions Source/Common/Interface/IBasaltErrorOptions.ts

This file was deleted.

1 change: 0 additions & 1 deletion Source/Common/Interface/index.ts

This file was deleted.

11 changes: 0 additions & 11 deletions Source/Common/Util/Dirname.ts

This file was deleted.

Loading

0 comments on commit 8b807fe

Please sign in to comment.