Skip to content

Commit

Permalink
modularization
Browse files Browse the repository at this point in the history
  • Loading branch information
Gido Manders committed Dec 13, 2023
1 parent e093ee6 commit d5c3839
Show file tree
Hide file tree
Showing 335 changed files with 7,280 additions and 6,357 deletions.
5 changes: 3 additions & 2 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,15 @@ module.exports = {
rules: {
indent: 'off',
'no-unused-vars': 'off',
'react/jsx-uses-react': 'off',
'react/react-in-jsx-scope': 'off',
'@typescript-eslint/no-unused-vars': [
'error',
{
vars: 'all',
args: 'after-used',
ignoreRestSiblings: true,
"argsIgnorePattern": "^_"
argsIgnorePattern: '^_'
}
],
'@typescript-eslint/indent': ['off'],
Expand All @@ -42,7 +44,6 @@ module.exports = {
{ onlyFunctionsWithAsyncKeyword: true }
],
'import/named': ['off'] // https://github.com/typescript-eslint/typescript-eslint/issues/154

}
},
{
Expand Down
8 changes: 3 additions & 5 deletions docs/translations.md
Original file line number Diff line number Diff line change
Expand Up @@ -204,11 +204,6 @@ Here is a JSON notation containing all keys and default translations:
"TypeaheadMultiple": {
"PAGINATION_TEXT": "Display additional results..."
},
"ErrorBoundary": {
"ERROR": {
"TITLE": "Oops something went wrong!"
}
},
"CopyToClipboard": {
"COPIED": "Copied!"
},
Expand All @@ -219,6 +214,9 @@ Here is a JSON notation containing all keys and default translations:
"PAGE_SIZE_DROPDOWN_LABEL": "Select page size",
"PAGE_SIZE": "{{pageSize}} items per page",
"TOTAL_ELEMENTS": "{{totalElements}} records found"
},
"Card": {
"ERROR": "Oops, something went wrong!"
}
}
```
Expand Down
Loading

0 comments on commit d5c3839

Please sign in to comment.