forked from v17development/flarum-user-badges
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request v17development#19 from datlechin/main
Badges visible on `UserCard`
- Loading branch information
Showing
61 changed files
with
8,100 additions
and
13,501 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# EditorConfig helps developers define and maintain consistent | ||
# coding styles between different editors and IDEs | ||
# editorconfig.org | ||
|
||
root = true | ||
|
||
[*] | ||
end_of_line = lf | ||
charset = utf-8 | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true | ||
indent_style = space | ||
indent_size = 2 | ||
|
||
[*.{diff,md}] | ||
trim_trailing_whitespace = false | ||
|
||
[*.{php,xml,json}] | ||
indent_size = 4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
**/.gitattributes export-ignore | ||
**/.gitignore export-ignore | ||
**/.gitmodules export-ignore | ||
**/.github export-ignore | ||
**/.travis export-ignore | ||
**/.travis.yml export-ignore | ||
**/.editorconfig export-ignore | ||
**/.styleci.yml export-ignore | ||
|
||
**/phpunit.xml export-ignore | ||
**/tests export-ignore | ||
|
||
**/js/dist/**/* -diff | ||
**/js/dist/**/* linguist-generated | ||
**/js/dist-typings/**/* -diff | ||
**/js/dist-typings/**/* linguist-generated | ||
**/js/yarn.lock -diff | ||
**/js/package-lock.json -diff | ||
|
||
* text=auto eol=lf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
name: User badges PHP | ||
|
||
on: [workflow_dispatch, push, pull_request] | ||
|
||
# The reusable workflow definitions will be moved to the `flarum/framework` repo soon. | ||
# This will break your current script. | ||
# When this happens, run `flarum-cli audit infra --fix` to update your infrastructure. | ||
|
||
jobs: | ||
run: | ||
uses: flarum/.github/.github/workflows/REUSABLE_backend.yml@main | ||
with: | ||
enable_backend_testing: false | ||
|
||
backend_directory: . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: User badges JS | ||
|
||
on: [workflow_dispatch, push, pull_request] | ||
|
||
# The reusable workflow definitions will be moved to the `flarum/framework` repo soon. | ||
# This will break your current script. | ||
# When this happens, run `flarum-cli audit infra --fix` to update your infrastructure. | ||
|
||
jobs: | ||
run: | ||
uses: flarum/.github/.github/workflows/REUSABLE_frontend.yml@main | ||
with: | ||
enable_bundlewatch: false | ||
enable_prettier: true | ||
enable_typescript: false | ||
|
||
frontend_directory: ./js | ||
backend_directory: . | ||
js_package_manager: npm | ||
main_git_branch: main | ||
|
||
secrets: | ||
bundlewatch_github_token: ${{ secrets.BUNDLEWATCH_GITHUB_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,12 @@ | ||
/vendor | ||
composer.lock | ||
composer.phar | ||
.idea | ||
|
||
.DS_Store | ||
Thumbs.db | ||
node_modules | ||
tests/.phpunit.result.cache | ||
/tests/integration/tmp | ||
.vagrant | ||
.idea/* | ||
.vscode | ||
js/coverage-ts |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
preset: recommended | ||
|
||
enabled: | ||
- logical_not_operators_with_successor_space | ||
|
||
disabled: | ||
- align_double_arrow | ||
- blank_line_after_opening_tag | ||
- multiline_array_trailing_comma | ||
- new_with_braces | ||
- phpdoc_align | ||
- phpdoc_order | ||
- phpdoc_separation | ||
- phpdoc_types |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
.pnp.* | ||
.yarn/* | ||
!.yarn/patches | ||
!.yarn/plugins | ||
!.yarn/releases | ||
!.yarn/sdks | ||
!.yarn/versions | ||
|
||
node_modules |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
export * from './src/admin'; | ||
export * from './src/common'; | ||
export * from './src/admin'; |
Large diffs are not rendered by default.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
export * from './src/common'; | ||
export * from './src/forum'; |
Oops, something went wrong.