-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from EgorDinamit/webpack
More fixes, now with tgui and webpack ver
- Loading branch information
Showing
101 changed files
with
2,989 additions
and
8,318 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,43 +1,15 @@ | ||
rules: | ||
## Enforce a maximum cyclomatic complexity allowed in a program | ||
# complexity: [warn, { max: 25 }] | ||
complexity: [error, { max: 25 }] | ||
## Enforce consistent brace style for blocks | ||
# brace-style: [warn, stroustrup, { allowSingleLine: false }] | ||
brace-style: [error, stroustrup, { allowSingleLine: false }] | ||
## Enforce the consistent use of either backticks, double, or single quotes | ||
# quotes: [warn, single, { | ||
# avoidEscape: true, | ||
# allowTemplateLiterals: true, | ||
# }] | ||
# react/jsx-closing-bracket-location: [warn, { | ||
# selfClosing: after-props, | ||
# nonEmpty: after-props, | ||
# }] | ||
# react/display-name: warn | ||
|
||
## Radar | ||
## ------------------------------------------------------ | ||
# radar/cognitive-complexity: warn | ||
radar/max-switch-cases: warn | ||
radar/no-all-duplicated-branches: warn | ||
radar/no-collapsible-if: warn | ||
radar/no-collection-size-mischeck: warn | ||
radar/no-duplicate-string: warn | ||
radar/no-duplicated-branches: warn | ||
radar/no-element-overwrite: warn | ||
radar/no-extra-arguments: warn | ||
radar/no-identical-conditions: warn | ||
radar/no-identical-expressions: warn | ||
radar/no-identical-functions: warn | ||
radar/no-inverted-boolean-check: warn | ||
radar/no-one-iteration-loop: warn | ||
radar/no-redundant-boolean: warn | ||
radar/no-redundant-jump: warn | ||
radar/no-same-line-conditional: warn | ||
radar/no-small-switch: warn | ||
radar/no-unused-collection: warn | ||
radar/no-use-of-empty-return-value: warn | ||
radar/no-useless-catch: warn | ||
radar/prefer-immediate-return: warn | ||
radar/prefer-object-literal: warn | ||
radar/prefer-single-boolean-return: warn | ||
radar/prefer-while: warn | ||
quotes: [error, single, { | ||
avoidEscape: true, | ||
allowTemplateLiterals: true, | ||
}] | ||
react/jsx-closing-bracket-location: [error, { | ||
selfClosing: after-props, | ||
nonEmpty: after-props, | ||
}] | ||
react/display-name: error |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
8 changes: 4 additions & 4 deletions
8
tgui/.yarn/releases/yarn-2.4.1.cjs → tgui/.yarn/releases/yarn-2.4.0.cjs
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "eslint", | ||
"version": "7.21.0-pnpify", | ||
"version": "7.4.0-pnpify", | ||
"main": "./lib/api.js", | ||
"type": "commonjs" | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,21 @@ | ||
enableScripts: false | ||
|
||
logFilters: | ||
## DISABLED_BUILD_SCRIPTS | ||
- code: YN0004 | ||
level: discard | ||
## INCOMPATIBLE_OS - fsevents junk | ||
- code: YN0062 | ||
level: discard | ||
|
||
plugins: | ||
- path: .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs | ||
spec: "@yarnpkg/plugin-interactive-tools" | ||
- path: .yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs | ||
spec: "@yarnpkg/plugin-workspace-tools" | ||
|
||
preferAggregateCacheInfo: true | ||
|
||
preferInteractive: true | ||
|
||
yarnPath: .yarn/releases/yarn-2.4.1.cjs | ||
yarnPath: .yarn/releases/yarn-2.4.0.cjs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.