Skip to content

Commit

Permalink
feat(settings page): functional development is done
Browse files Browse the repository at this point in the history
Some fine tuning and small things coming next

BREAKING CHANGE: same as before
  • Loading branch information
ghaschel committed Sep 20, 2022
1 parent 1e2d533 commit c078d2f
Show file tree
Hide file tree
Showing 19 changed files with 7,951 additions and 8,523 deletions.
10 changes: 5 additions & 5 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ var baseTsRules = {
'no-caller': 'error',
'no-case-declarations': 'error',
'no-confusing-arrow': 'error',
'no-console': ['error', { allow: ['warn', 'error'] }],
'no-console': ['error', { allow: ['log', 'warn', 'error'] }],
'no-continue': 'error',
'no-else-return': ['error', { allowElseIf: true }],
'no-empty': 'error',
Expand All @@ -67,7 +67,7 @@ var baseTsRules = {
'no-extra-bind': 'error',
'no-extra-label': 'error',
'no-floating-decimal': 'error',
'no-implicit-coercion': ['error', { disallowTemplateShorthand: true }],
'no-implicit-coercion': ['error', { disallowTemplateShorthand: false }],
'no-implied-eval': 'off',
'no-invalid-this': 'off',
'no-iterator': 'error',
Expand Down Expand Up @@ -109,7 +109,6 @@ var baseTsRules = {
'no-shadow': 'off',
'no-shadow-restricted-names': 'error',
'no-throw-literal': 'off',
'no-undefined': 'error',
'no-unneeded-ternary': 'error',
'no-unused-expressions': 'off',
'no-useless-call': 'error',
Expand Down Expand Up @@ -358,7 +357,7 @@ var baseTsRules = {
'@typescript-eslint/ban-tslint-comment': 'warn',
'@typescript-eslint/class-literal-property-style': ['error', 'getters'],
'@typescript-eslint/consistent-generic-constructors': ['error', 'constructor'],
'@typescript-eslint/consistent-indexed-object-style': ['error', 'index-signature'],
'@typescript-eslint/consistent-indexed-object-style': ['error', 'record'],
'@typescript-eslint/explicit-function-return-type': [
'error',
{
Expand Down Expand Up @@ -399,7 +398,7 @@ var baseTsRules = {
},
{
selector: 'objectLiteralProperty',
format: ['camelCase', 'PascalCase', 'UPPER_CASE'],
format: null,
},
{
selector: 'typeLike',
Expand All @@ -426,6 +425,7 @@ var baseTsRules = {
},
],
'@typescript-eslint/no-non-null-asserted-nullish-coalescing': ['error'],
'@typescript-eslint/no-non-null-assertion': ['off'],
'@typescript-eslint/no-redundant-type-constituents': ['error'],
'@typescript-eslint/no-unnecessary-condition': ['error'],
'@typescript-eslint/prefer-enum-initializers': ['error'],
Expand Down
4 changes: 3 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
{
"search.exclude": {
"out": true
}
},
"vscode-angular-html.colorCustomizations": true,
"editor.codeLensFontSize": 0
}
246 changes: 0 additions & 246 deletions backup.json

This file was deleted.

Loading

0 comments on commit c078d2f

Please sign in to comment.