-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
ewen0930
committed
Jul 24, 2017
1 parent
c4c3071
commit 15d9783
Showing
68 changed files
with
4,517 additions
and
3,687 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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
Manifest-Version: 1.0 | ||
Ant-Version: Apache Ant 1.9.4 | ||
Created-By: 1.8.0_112-release-736-b16 (JetBrains s.r.o) | ||
Created-By: 1.8.0_152-release-915-b5 (JetBrains s.r.o) | ||
|
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,27 @@ | ||
failure.login=Login failed. Check your credentials. | ||
failure.permissions=Request failed. Check your permissions. | ||
failure.server.message=Request failed. Reason: {0} | ||
failure.http.error=Request failed with HTTP error: {0,number} {1}. | ||
failure.configuration=Not configured. | ||
|
||
## JIRA | ||
jira.default.query=assignee = currentUser() and resolution = Unresolved order by updated | ||
|
||
# Missing features | ||
jira.failure.no.REST=JIRA below 4.2.0 doesn't have REST API and is no longer supported. | ||
# actually JQL support was first added to SOAP API for JIRA 4.0 | ||
jira.failure.no.JQL=JQL search cannot be used in JIRA versions prior 4.2. | ||
jira.failure.no.state.update=Task state cannot be updated in JIRA versions prior 4.2. | ||
jira.failure.no.time.spent=Time spent cannot be updated in JIRA versions prior 5.0. | ||
|
||
jira.failure.captcha=Login failed. Enter captcha in web-interface. | ||
|
||
## YouTrack | ||
youtrack.default.query=for: me sort by: updated #Unresolved | ||
|
||
## Bugzilla | ||
bugzilla.failure.malformed.response=Cannot decode server response. Check that XML-RPC plugin is enabled. | ||
bugzilla.failure.no.version=Cannot find Bugzilla version. Check that URL ends with "xmlrpc.cgi". | ||
|
||
## Trello | ||
trello.failure.write.access.required=This action requires write access to your account. Please update authorization token in settings. |
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,11 @@ | ||
<html> | ||
<body> | ||
Reports anonymous capturing groups and numeric back references in a RegExp. | ||
These are only reported when the RegExp dialect supports named group and named group references. | ||
Named groups and named back references improve code readability and are recommended to use instead. | ||
When a capture is not needed, matching can be more performant and use less memory by using a non-capturing group, | ||
i.e. <b>(?:xxx)</b> instead of <b>(xxx)</b>. | ||
<!-- tooltip end --> | ||
<p><small>New in 2017.2</small> | ||
</body> | ||
</html> |
7 changes: 7 additions & 0 deletions
7
resources_en/inspectionDescriptions/EmptyAlternationBranch.html
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,7 @@ | ||
<html> | ||
<body> | ||
Reports empty branches in a RegExp alternation. For example:<br> <code>a<b>|</b></code> | ||
<!-- tooltip end --> | ||
<p><small>New in 2017.2</small> | ||
</body> | ||
</html> |
8 changes: 8 additions & 0 deletions
8
resources_en/inspectionDescriptions/HtmlMissingClosingTag.html
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,8 @@ | ||
<html> | ||
<body> | ||
Reports HTML elements without a closing tag. | ||
Some coding styles require a closing tag on HTML elements even where this is optional. | ||
<!-- tooltip end --> | ||
<p><small>New in 2017.2</small> | ||
</body> | ||
</html> |
18 changes: 18 additions & 0 deletions
18
resources_en/inspectionDescriptions/NonAsciiCharacters.html
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,18 @@ | ||
<html> | ||
<body> | ||
|
||
This inspection warns you of the code accidentally written in the wrong encoding.<br> | ||
|
||
For example, <br> | ||
<ul> | ||
<li>Non-ASCII characters used in the names/strings/comments or</li> | ||
<li>Identifiers written in different languages | ||
(e.g. when in the variable "<code>my<span color="red">C</span>ollection</code>" | ||
the letter <code><span color="red">C</span></code> written in Cyrillic) or</li> | ||
<li>Unicode symbols used in comments or strings | ||
(e.g. long dashes and arrows in the comment | ||
"<code>// a <span color="red">→</span> !a <span color="red">—</span> please note</code>")</li> | ||
</ul> | ||
|
||
</body> | ||
</html> |
5 changes: 5 additions & 0 deletions
5
resources_en/inspectionDescriptions/XmlDefaultAttributeValue.html
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,5 @@ | ||
<html> | ||
<body> | ||
This inspection checks for redundant default XML attribute value assignment. | ||
</body> | ||
</html> |
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
Oops, something went wrong.