Skip to content

Commit

Permalink
Initial LODManager.
Browse files Browse the repository at this point in the history
  • Loading branch information
digisomni committed Sep 26, 2023
1 parent 2e9cc93 commit 1a8616f
Show file tree
Hide file tree
Showing 9 changed files with 11,530 additions and 11,304 deletions.
18 changes: 10 additions & 8 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ module.exports = {
"brace-style": "off",
"@typescript-eslint/brace-style": ["error"],
"comma-dangle": "off",
"@typescript-eslint/comma-dangle": ["error", "never"],
"@typescript-eslint/comma-dangle": ["off", "never"],
"comma-spacing": "off",
"@typescript-eslint/comma-spacing": ["error"],
"default-param-last": "off",
Expand All @@ -112,7 +112,7 @@ module.exports = {
"@typescript-eslint/func-call-spacing": ["error", "never"],
"indent": "off",
// Warning: https://github.com/typescript-eslint/typescript-eslint/issues/1824
"@typescript-eslint/indent": ["error", 4, { "SwitchCase": 1, "outerIIFEBody": 1 }],
"@typescript-eslint/indent": ["off", 4, { "SwitchCase": 1, "outerIIFEBody": 1 }],
"init-declarations": "off",
"@typescript-eslint/init-declarations": ["error", "always"],
"keyword-spacing": "off",
Expand All @@ -128,7 +128,7 @@ module.exports = {
"no-empty-function": "off",
"@typescript-eslint/no-empty-function": ["error"],
"no-extra-parens": "off",
"@typescript-eslint/no-extra-parens": ["error"],
"@typescript-eslint/no-extra-parens": ["off"],
"no-extra-semi": "off",
"@typescript-eslint/no-extra-semi": ["error"],
"no-implied-eval": "off",
Expand All @@ -141,7 +141,7 @@ module.exports = {
"@typescript-eslint/no-loss-of-precision": ["error"],
"no-magic-numbers": "off",
"@typescript-eslint/no-magic-numbers": [
"error",
"off",
{
"ignore": [-1, 0, 1, 2],
"ignoreEnums": true,
Expand Down Expand Up @@ -211,6 +211,8 @@ module.exports = {
"no-template-curly-in-string": "error",
"no-unreachable-loop": "error",
"no-unsafe-optional-chaining": "error",
"no-unsafe-call": "off",
"no-unsafe-assignment": "off",
"no-useless-backreference": "error",
"require-atomic-updates": "error",

Expand Down Expand Up @@ -302,7 +304,7 @@ module.exports = {
"eol-last": "error",
// "func-call-spacing": ["error", "never"], // TypeScript extension overrides.
"func-style": ["error", "declaration", { "allowArrowFunctions": true }],
"implicit-arrow-linebreak": ["error", "beside"],
"implicit-arrow-linebreak": ["off", "beside"],
// "indent": ["error", 4, { "SwitchCase": 1, "outerIIFEBody": 1 }], // TypeScript extension overrides.
"jsx-quotes": ["error", "prefer-double"],
"key-spacing": "error",
Expand All @@ -313,9 +315,9 @@ module.exports = {
"new-parens": "error",
"newline-per-chained-call": ["error", { "ignoreChainWithDepth": 2 }],
// "no-array-constructor": "error", // TypeScript extension overrides.
"no-continue": "error",
"no-continue": "off",
"no-lonely-if": "error",
"no-multiple-empty-lines": ["error", { "max": 2, "maxBOF": 0, "maxEOF": 0 }],
"no-multiple-empty-lines": ["off", { "max": 2, "maxBOF": 0, "maxEOF": 0 }],
"no-nested-ternary": "error",
"no-new-object": "error",
"no-plusplus": ["error", { "allowForLoopAfterthoughts": true }],
Expand All @@ -326,7 +328,7 @@ module.exports = {
"object-curly-newline": "error",
// "object-curly-spacing": ["error", "always"], // TypeScript extension overrides.
"one-var": ["error", "never"],
"operator-linebreak": ["error", "before"],
"operator-linebreak": ["off", "before"],
"prefer-exponentiation-operator": "error",
"prefer-object-spread": "error",
// "quotes": ["error", "double", { "allowTemplateLiterals": true }], // TypeScript extension overrides.
Expand Down
Loading

0 comments on commit 1a8616f

Please sign in to comment.