Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified .DS_Store
Binary file not shown.
9 changes: 9 additions & 0 deletions cap2UI5/app/_archiv/app/.editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
root = true

[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
File renamed without changes.
6 changes: 6 additions & 0 deletions cap2UI5/app/_archiv/app/.prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"singleQuote": true,
"tabWidth": 2,
"printWidth": 120,
"trailingComma": "all"
}
24 changes: 24 additions & 0 deletions cap2UI5/app/_archiv/app/eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
import js from '@eslint/js';
import globals from 'globals';

export default [
{
files: ['webapp/**/*.js'],
languageOptions: {
ecmaVersion: 2022,
sourceType: 'script',
globals: {
...globals.browser,
sap: 'readonly',
z2ui5: 'writable',
},
},
rules: {
...js.configs.recommended.rules,
'no-var': 'error',
'prefer-const': 'error',
'eqeqeq': ['error', 'always', { null: 'ignore' }],
'no-console': 'warn',
},
},
];
Loading
Loading