Skip to content

Commit b8aa488

Browse files
committed
Merge remote-tracking branch 'origin/master'
# Conflicts: # .gitignore
2 parents 335edd5 + 5fae8b7 commit b8aa488

17 files changed

+740
-190
lines changed

.editorconfig

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# This file is for unifying the coding style for different editors and IDEs.
2+
# More information at http://editorconfig.org
3+
# tested
4+
5+
root = true
6+
7+
[*]
8+
charset = utf-8
9+
indent_size = 2
10+
indent_style = space
11+
end_of_line = lf
12+
insert_final_newline = true
13+
trim_trailing_whitespace = true
14+
15+
[*.md]
16+
trim_trailing_whitespace = false

.github/CONTRIBUTING.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Contributing guidelines
2+
3+
Please read [the 'Contribute' official page](https://bearsampp.com/contribute).

.github/SUPPORT.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# Support [![](https://isitmaintained.com/badge/resolution/bearsampp/bearsampp.svg)](https://isitmaintained.com/project/bearsampp/bearsampp)
2+
3+
## Reporting an issue
4+
5+
Please do a search in [open issues](https://github.com/bearsampp/bearsampp/issues?utf8=%E2%9C%93&q=) to see if the issue or feature request has already been filed and read the [FAQ](https://bearsampp.github.io/doc/faq/) page first.
6+
7+
If you find your issue already exists, make relevant comments and add your [reaction](https://github.com/blog/2119-add-reactions-to-pull-requests-issues-and-comments). Use a reaction in place of a "+1" comment.
8+
9+
:+1: - upvote
10+
11+
:-1: - downvote
12+
13+
If you cannot find an existing issue that describes your bug or feature, submit an issue using the guidelines below.
14+
15+
## Writing good bug reports and feature requests
16+
17+
File a single issue per problem and feature request.
18+
19+
* Do not enumerate multiple bugs or feature requests in the same issue.
20+
* Do not add your issue as a comment to an existing issue unless it's for the identical input. Many issues look similar, but have different causes.
21+
22+
The more information you can provide, the more likely someone will be successful reproducing the issue and finding a fix.
23+
24+
You are now ready to [create a new issue](https://github.com/bearsampp/bearsampp/issues/new/choose)!
25+
26+
## Closure policy
27+
28+
* Issues that don't have the information requested above (when applicable) will be closed immediately and the poster directed to the support guidelines.
29+
* Issues that go a week without a response from original poster are subject to closure at my discretion.

.github/dependabot.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,9 @@ updates:
77
time: "08:00"
88
timezone: "America/Chicago"
99
labels:
10-
- ":game_die: dependencies"
1110
- ":robot: bot"
11+
# Set the access for individual scopes, or use permissions: write-all
12+
permissions:
13+
pull-requests: write
14+
issues: write
15+
repository-projects: write

.github/workflows/file-sync.yml

Lines changed: 0 additions & 21 deletions
This file was deleted.

.gitignore

Lines changed: 18 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,18 @@
1-
# Jetbrains
2-
/*.iml
3-
/*.idea
4-
/.vs
5-
/.vsc
6-
7-
# Bearsampp
8-
/.dev
1+
# Jetbrains
2+
/*.iml
3+
/.idea
4+
/.idea/.gitignore
5+
/.idea/deployment.xml
6+
/.idea/discord.xml
7+
/.idea/module-perl.iml
8+
/.idea/modules.xml
9+
/.idea/php.xml
10+
/.idea/vcs.xml
11+
12+
# Neard
13+
/.dev
14+
15+
# Visual Studio
16+
.vscode/
17+
.vs/
18+
.vsc/

0 commit comments

Comments
 (0)