Skip to content

Commit

Permalink
Merge pull request #5399 from deNBI/staging
Browse files Browse the repository at this point in the history
Staging
  • Loading branch information
dweinholz authored Feb 7, 2023
2 parents 97809c1 + 4d08b7f commit 5759000
Show file tree
Hide file tree
Showing 16 changed files with 7,305 additions and 2,468 deletions.
34 changes: 26 additions & 8 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"root": true,
"ignorePatterns": [
"projects/**/*",
"package-lock.json"
"package-lock.json"
],
"overrides": [
{
Expand Down Expand Up @@ -44,7 +44,7 @@
}
],
"@angular-eslint/no-forward-ref": "error",
"no-return-await": "off",
"no-return-await": "off",
"@typescript-eslint/naming-convention": "off",
"@typescript-eslint/ban-types": "off",
"camelcase": "off",
Expand Down Expand Up @@ -98,7 +98,9 @@
}
],
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": ["error"],
"@typescript-eslint/no-unused-vars": [
"error"
],
"@typescript-eslint/member-ordering": "off",
"@typescript-eslint/no-floating-promises": "error",
"@typescript-eslint/no-for-in-array": "off",
Expand Down Expand Up @@ -132,8 +134,14 @@
"import/no-unresolved": "off",
"import/no-mutable-exports": "off",
"import/extensions": "off",
"import/no-extraneous-dependencies": "off",
"indent": ["error", "tab", {"SwitchCase": 1}],
"import/no-extraneous-dependencies": "off",
"indent": [
"error",
"tab",
{
"SwitchCase": 1
}
],
"linebreak-style": "error",
"max-lines": "off",
"no-continue": "off",
Expand All @@ -144,21 +152,31 @@
"no-invalid-this": "off",
"no-irregular-whitespace": "error",
"no-multiple-empty-lines": "error",
"@angular-eslint/no-empty-lifecycle-method": "off",
"no-empty-function": "off",
"no-null/no-null": "off",
"no-nested-ternary": "off",
"no-param-reassign": "off",
"no-redeclare": "error",
"no-regex-spaces": "error",
"no-restricted-syntax": ["off", "ForInStatement"],
"no-restricted-syntax": [
"off",
"ForInStatement"
],
"no-sparse-arrays": "error",
"no-tabs": "off",
"no-template-curly-in-string": "error",
"no-underscore-dangle": "off",
"no-use-before-define": "off",
"no-useless-constructor": "off",
"no-void": "off",
"@typescript-eslint/no-useless-constructor": ["error"],
"no-mixed-spaces-and-tabs": [2,"smart-tabs"],
"@typescript-eslint/no-useless-constructor": [
"error"
],
"no-mixed-spaces-and-tabs": [
2,
"smart-tabs"
],
"padding-line-between-statements": [
"error",
{
Expand Down
Loading

0 comments on commit 5759000

Please sign in to comment.