-
Notifications
You must be signed in to change notification settings - Fork 3
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 #19 from Sehee-Lee-01/feat#11-codestyle
🚀 프로젝트에 checkstyle(lint)과 code style(formatter) 설정
- Loading branch information
Showing
9 changed files
with
520 additions
and
5 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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.
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
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 |
---|---|---|
@@ -0,0 +1,54 @@ | ||
<!-- Add the following to any file that is to be validated against this DTD: | ||
|
||
<!DOCTYPE module PUBLIC | ||
"-//Checkstyle//DTD Checkstyle Configuration 1.3//EN" | ||
"https://checkstyle.org/dtds/configuration_1_3.dtd"> | ||
--> | ||
|
||
<!ELEMENT module (module|property|metadata|message)*> | ||
<!ATTLIST module name NMTOKEN #REQUIRED> | ||
|
||
<!ELEMENT property EMPTY> | ||
<!ATTLIST property | ||
name NMTOKEN #REQUIRED | ||
value CDATA #REQUIRED | ||
default CDATA #IMPLIED | ||
> | ||
|
||
<!-- | ||
|
||
Used to store metadata in the Checkstyle configuration file. This | ||
information is ignored by Checkstyle. This may be useful if you want to | ||
store plug-in specific information. | ||
|
||
To avoid name clashes between different tools/plug-ins you are *strongly* | ||
encouraged to prefix all names with your domain name. For example, use the | ||
name "com.mycompany.parameter" instead of "parameter". | ||
|
||
The prefix "com.puppycrawl." is reserved for Checkstyle. | ||
|
||
--> | ||
|
||
<!ELEMENT metadata EMPTY> | ||
<!ATTLIST metadata | ||
name NMTOKEN #REQUIRED | ||
value CDATA #REQUIRED | ||
> | ||
|
||
<!-- | ||
Can be used to replace some generic Checkstyle messages with a custom | ||
messages. | ||
|
||
The 'key' attribute specifies for which actual Checkstyle message the | ||
replacing should occur, look into Checkstyle's message.properties for | ||
the according message keys. | ||
|
||
The 'value' attribute defines the custom message patterns including | ||
message parameter placeholders as defined in the original Checkstyle | ||
messages (again see message.properties for reference). | ||
--> | ||
<!ELEMENT message EMPTY> | ||
<!ATTLIST message | ||
key NMTOKEN #REQUIRED | ||
value CDATA #REQUIRED | ||
> |
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 @@ | ||
<?xml version="1.0"?> | ||
|
||
<!DOCTYPE suppressions PUBLIC | ||
"-//Checkstyle//DTD SuppressionFilter Configuration 1.2//EN" | ||
"suppressions_1_2.dtd"> | ||
|
||
<suppressions> | ||
</suppressions> |
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,16 @@ | ||
<!-- Add the following to any file that is to be validated against this DTD: | ||
|
||
<!DOCTYPE suppressions PUBLIC | ||
"-//Checkstyle//DTD SuppressionFilter Configuration 1.2//EN" | ||
"https://checkstyle.org/dtds/suppressions_1_2.dtd"> | ||
--> | ||
|
||
<!ELEMENT suppressions (suppress*)> | ||
|
||
<!ELEMENT suppress EMPTY> | ||
<!ATTLIST suppress files CDATA #IMPLIED | ||
checks CDATA #IMPLIED | ||
message CDATA #IMPLIED | ||
id CDATA #IMPLIED | ||
lines CDATA #IMPLIED | ||
columns CDATA #IMPLIED> |
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