Skip to content

Commit

Permalink
Syncing files from cloud/release/2023.025 to release/2023.025
Browse files Browse the repository at this point in the history
  • Loading branch information
acharron-hl committed Jan 3, 2024
1 parent f547100 commit c13e3e9
Show file tree
Hide file tree
Showing 2,211 changed files with 129,452 additions and 34,718 deletions.
11 changes: 11 additions & 0 deletions .allowed-licenses
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
- Apache-2.0
- BSD-2-Clause
- BSD-3-Clause
- ISC
- LGPL-2.1
- LGPL-2.1-only
- LGPL-3.0
- LGPL-3.0-only
- MIT
- OSL-3.0
- proprietary # Our own proprietary packages
31 changes: 28 additions & 3 deletions .codecov.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
codecov:
require_ci_to_pass: yes
require_ci_to_pass: true
notify:
wait_for_ci: true

coverage:
precision: 2
Expand All @@ -13,7 +15,7 @@ coverage:
patch:
front-end:
informational: true
changes: no
changes: false

parsers:
gcov:
Expand All @@ -23,10 +25,33 @@ parsers:
method: no
macro: no

flag_management:
individual_flags: # exceptions to the default rules above, stated flag by flag
- name: frontend
paths:
- "**/*.ts"
- "**/*.tsx"
carryforward: true
statuses:
- type: project
target: auto
- type: patch
target: 60%
- name: backend
paths:
- "**/*.php"
carryforward: true
statuses:
- type: project
target: auto
- type: patch
target: 80%

comment:
layout: "diff,flags,tree"
layout: "diff,flags"
behavior: default
require_changes: true
show_carryforward_flags: true

ignore:
- "**/views/**/*.php"
Expand Down
2 changes: 1 addition & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ insert_final_newline = true
trim_trailing_whitespace = false

[*.yml]
indent_size = 2
indent_size = 4
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
!/conf/constants.php
!/conf/readme.txt
/dist/*
/docker/install.json
/locales/*
!/locales/.gitkeep
/plugins/*
Expand Down Expand Up @@ -115,6 +116,7 @@ git-diff.txt
phpcs-diff.json
.phpunit.result.cache
*.cookiejar
/cli/config.json
/cli/vendor/
/cli/composer.lock
/coverage
Expand Down
62 changes: 0 additions & 62 deletions .htaccess.dist

This file was deleted.

3 changes: 2 additions & 1 deletion .swcrc
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@
},
"transform": {
"react": {
"useBuiltins": true
"useBuiltins": true,
"runtime": "automatic"
}
},
"target": "es2016",
Expand Down
5 changes: 3 additions & 2 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
"dbaeumer.vscode-eslint",
"calebporzio.better-phpunit",
"eamodio.gitlens",
"firsttris.vscode-jest-runner",
"ziyasal.vscode-open-in-github",
"neilbrayfield.php-docblocker",
"bmewburn.vscode-intelephense-client",
Expand All @@ -16,7 +15,9 @@
"redhat.vscode-yaml",
"silvenon.mdx",
"ikappas.phpcs",
"nhoizey.gremlins"
"nhoizey.gremlins",
"Orta.vscode-jest",
"BriteSnow.vscode-toggle-quotes",
],
// List of extensions recommended by VS Code that should not be recommended for users of this workspace.
"unwantedRecommendations": []
Expand Down
26 changes: 24 additions & 2 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,7 @@
],
"type": "node"
},

{
// Execute "yarn test:browser:debug" prior to attaching.
"type": "chrome",
"request": "attach",
"name": "Attach to \"yarn test:browser:debug\"",
Expand All @@ -46,6 +44,30 @@
"max_children": 100,
"max_depth": 5
}
},
{
"type": "node",
"name": "vscode-jest-tests.v2",
"request": "launch",
"env": {
"JEST": "true"
},
"runtimeArgs": [
"--preserve-symlinks",
"--preserve-symlinks-main",
],
"args": [
"--runInBand",
"--watchAll=false",
"--testNamePattern",
"${jest.testNamePattern}",
"--runTestsByPath",
"${jest.testFile}"
],
"cwd": "${workspaceFolder}",
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
"program": "node_modules/.bin/jest"
}
]
}
26 changes: 26 additions & 0 deletions .vscode/recommendedUserSettings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
"javascript.validate.enable": true,
"php-docblocker.returnGap": true,
"php-docblocker.useShortNames": true,
"typescript.updateImportsOnFileMove.enabled": "always",
"typescript.preferences.importModuleSpecifier": "non-relative",
"files.trimTrailingWhitespace": true,
"editor.formatOnSave": true,
"eslint.validate": ["javascript", "javascriptreact", "typescript", "typescriptreact"],
"twig-language.indentStyle": "space",
"twig-language-2.indentStyle": "space",
"editor.stablePeek": true,
"search.quickOpen.includeSymbols": true,
"search.useIgnoreFiles": false,
"phpcs.standard": "./vendor/vanilla/standards/code-sniffer/Vanilla",
"eslint.packageManager": "yarn",
"gremlins.showInProblemPane": true,
"editor.gotoLocation.multipleDefinitions": "goto",
"editor.gotoLocation.multipleTypeDefinitions": "goto",
"eslint.alwaysShowStatus": true,
"phpcs.autoConfigSearch": false,
"phpcs.enable": false,
"jestrunner.jestCommand": "yarn test:unit",
"prettier.prettierPath": "./node_modules/prettier",
"typescript.tsdk": "node_modules/typescript/lib"
}

0 comments on commit c13e3e9

Please sign in to comment.