Skip to content

Commit f5c3a69

Browse files
committedOct 21, 2020
Merge remote-tracking branch 'origin/master' into update-outdated-comments-in-pull-request-label-style
* origin/master: (27 commits) [skip ci] Updated translations via Crowdin add more clarification to the issue-template.md (go-gitea#13235) go-version constraints ignore pre-releases (go-gitea#13234) [skip ci] Updated translations via Crowdin Update some JS dependencies (go-gitea#13222) Return the full rejection message and errors in flash errors (go-gitea#13221) Update heatmap fixtures to restore tests (go-gitea#13224) [skip ci] Updated translations via Crowdin Add review request api (go-gitea#11355) [skip ci] Updated translations via Crowdin When the git ref is unable to be found return broken pr (go-gitea#13218) Various arc-green fixes (go-gitea#13214) Show stale label for stale code comment which is marked as resolved (go-gitea#13213) Move install pages out of main macaron routes (go-gitea#13195) Use CSS Variables for fonts, remove postcss-loader (go-gitea#13204) [skip ci] Updated translations via Crowdin Align `SSH_AUTHORIZED_KEYS_BACKUP` var with the value in `app.ini` (go-gitea#13212) Fix size and clickable area on file table back link (go-gitea#13205) [skip ci] Updated translations via Crowdin Fix error in diff html rendering (go-gitea#13191) ...

File tree

131 files changed

+2649
-2070
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

131 files changed

+2649
-2070
lines changed
 

‎.eslintrc‎

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ rules:
9999
import/no-amd: [0]
100100
import/no-anonymous-default-export: [0]
101101
import/no-commonjs: [0]
102-
import/no-cycle: [0]
102+
import/no-cycle: [2, {ignoreExternal: true}]
103103
import/no-default-export: [0]
104104
import/no-deprecated: [0]
105105
import/no-dynamic-require: [0]
@@ -117,7 +117,7 @@ rules:
117117
import/no-self-import: [2]
118118
import/no-unassigned-import: [0]
119119
import/no-unresolved: [2, {commonjs: true}]
120-
import/no-unused-modules: [0]
120+
import/no-unused-modules: [2, {unusedExports: true}]
121121
import/no-useless-path-segments: [2, {commonjs: true}]
122122
import/no-webpack-loader-syntax: [2]
123123
import/order: [0]
@@ -211,7 +211,7 @@ rules:
211211
no-mixed-operators: [0]
212212
no-mixed-spaces-and-tabs: [2]
213213
no-multi-assign: [0]
214-
no-multi-spaces: [2, {ignoreEOLComments: true, exceptions: {Property: true, VariableDeclarator: true}}]
214+
no-multi-spaces: [2, {ignoreEOLComments: true, exceptions: {Property: true}}]
215215
no-multi-str: [2]
216216
no-negated-condition: [0]
217217
no-nested-ternary: [0]
@@ -336,6 +336,7 @@ rules:
336336
unicorn/explicit-length-check: [0]
337337
unicorn/filename-case: [0]
338338
unicorn/import-index: [0]
339+
unicorn/import-style: [0]
339340
unicorn/new-for-builtins: [2]
340341
unicorn/no-abusive-eslint-disable: [0]
341342
unicorn/no-array-instanceof: [0]
@@ -356,11 +357,13 @@ rules:
356357
unicorn/no-useless-undefined: [0]
357358
unicorn/no-zero-fractions: [2]
358359
unicorn/number-literal-case: [0]
360+
unicorn/numeric-separators-style: [0]
359361
unicorn/prefer-add-event-listener: [2]
360362
unicorn/prefer-array-find: [2]
361363
unicorn/prefer-dataset: [2]
362364
unicorn/prefer-event-key: [2]
363365
unicorn/prefer-includes: [2]
366+
unicorn/prefer-math-trunc: [2]
364367
unicorn/prefer-modern-dom-apis: [0]
365368
unicorn/prefer-negative-index: [2]
366369
unicorn/prefer-node-append: [0]
@@ -374,6 +377,7 @@ rules:
374377
unicorn/prefer-spread: [0]
375378
unicorn/prefer-starts-ends-with: [2]
376379
unicorn/prefer-string-slice: [0]
380+
unicorn/prefer-ternary: [0]
377381
unicorn/prefer-text-content: [2]
378382
unicorn/prefer-trim-start-end: [2]
379383
unicorn/prefer-type-error: [0]

‎.github/issue_template.md‎

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@
1212
- Gitea version (or commit ref):
1313
- Git version:
1414
- Operating system:
15+
<!-- Please include information on whether you built gitea yourself, used one of our downloads or are using some other package -->
16+
<!-- Please also tell us how you are running gitea, e.g. if it is being run from docker, a command-line, systemd etc. --->
17+
<!-- If you are using a package or systemd tell us what distribution you are using -->
1518
- Database (use `[x]`):
1619
- [ ] PostgreSQL
1720
- [ ] MySQL
@@ -20,8 +23,10 @@
2023
- Can you reproduce the bug at https://try.gitea.io:
2124
- [ ] Yes (provide example URL)
2225
- [ ] No
23-
- [ ] Not relevant
2426
- Log gist:
27+
<!-- It really is important to provide pertinent logs -->
28+
<!-- Please read https://docs.gitea.io/en-us/logging-configuration/#debugging-problems -->
29+
<!-- In addition, if your problem relates to git commands set `RUN_MODE=dev` at the top of app.ini -->
2530

2631
## Description
2732

0 commit comments

Comments
 (0)
Please sign in to comment.