Skip to content

Commit 5ca8648

Browse files
committed
docs: use chinese name
1 parent b80c880 commit 5ca8648

25 files changed

+25
-25
lines changed

lib/constants/message.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* @file Message templates
3-
* @author Duke Luo
3+
* @author Huan Luo
44
*/
55
'use strict';
66

lib/constants/naming-convention.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* @file Built in filename naming convention
3-
* @author Duke Luo
3+
* @author Huan Luo
44
*/
55
'use strict';
66

lib/constants/regex.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* @file Regex pattern constants
3-
* @author Duke Luo
3+
* @author Huan Luo
44
*/
55
'use strict';
66

lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* @file check the file folder
3-
* @author Duke Luo
3+
* @author Huan Luo
44
*/
55
'use strict';
66

lib/rules/filename-blocklist.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* @file The filename should be blocklisted.
3-
* @author Florian Ehmke, Duke Luo
3+
* @author Florian Ehmke, Huan Luo
44
*/
55
'use strict';
66

lib/rules/filename-naming-convention.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* @file The filename should follow the filename naming convention
3-
* @author Duke Luo
3+
* @author Huan Luo
44
*/
55
'use strict';
66

lib/rules/folder-match-with-fex.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* @file The folder should match the naming pattern specified by the file extension
3-
* @author Duke Luo
3+
* @author Huan Luo
44
*/
55
'use strict';
66

lib/rules/folder-naming-convention.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* @file The folder should follow the folder naming convention
3-
* @author Duke Luo
3+
* @author Huan Luo
44
*/
55
'use strict';
66

lib/rules/no-index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* @file A file cannot be named "index"
3-
* @author Duke Luo
3+
* @author Huan Luo
44
*/
55
'use strict';
66

lib/utils/doc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* @file Utils about document
3-
* @author Duke Luo
3+
* @author Huan Luo
44
*/
55
'use strict';
66

lib/utils/filename.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* @file Utils about filename
3-
* @author Duke Luo
3+
* @author Huan Luo
44
*/
55
'use strict';
66

lib/utils/rule.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* @file Utils about rule
3-
* @author David Ratier, Duke Luo
3+
* @author David Ratier, Huan Luo
44
*/
55
'use strict';
66

lib/utils/utility.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* @file A utility file containing useful functions
3-
* @author Duke Luo
3+
* @author Huan Luo
44
*/
55
'use strict';
66

lib/utils/validation.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* @file Utils about validation
3-
* @author Duke Luo
3+
* @author Huan Luo
44
*/
55
'use strict';
66

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"type": "git",
1818
"url": "git+https://github.com/DukeLuo/eslint-plugin-check-file.git"
1919
},
20-
"author": "Duke Luo <dukeluo@outlook.com> (https://shaiwang.life)",
20+
"author": "Huan Luo <dukeluo@outlook.com> (https://shaiwang.life)",
2121
"license": "Apache-2.0",
2222
"bugs": {
2323
"url": "https://github.com/DukeLuo/eslint-plugin-check-file/issues"

tests/lib/rules/filename-blocklist.posix.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* @file The filename should be blocklisted
3-
* @author Florian Ehmke, Duke Luo
3+
* @author Florian Ehmke, Huan Luo
44
*/
55
'use strict';
66

tests/lib/rules/filename-blocklist.windows.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* @file The filename should be blocklisted
3-
* @author Duke Luo
3+
* @author Huan Luo
44
*/
55
'use strict';
66

tests/lib/rules/filename-naming-convention.posix.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* @file The filename should follow the filename naming convention
3-
* @author Duke Luo
3+
* @author Huan Luo
44
*/
55
'use strict';
66

tests/lib/rules/filename-naming-convention.windows.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* @file The filename should follow the filename naming convention
3-
* @author Duke Luo
3+
* @author Huan Luo
44
*/
55
'use strict';
66

tests/lib/rules/folder-match-with-fex.posix.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* @file The folder should match the naming pattern specified by the file extension
3-
* @author Duke Luo
3+
* @author Huan Luo
44
*/
55
'use strict';
66

tests/lib/rules/folder-match-with-fex.windows.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* @file The folder should match the naming pattern specified by the file extension
3-
* @author Duke Luo
3+
* @author Huan Luo
44
*/
55
'use strict';
66

tests/lib/rules/folder-naming-convention.posix.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* @file The folder should follow the folder naming convention
3-
* @author Duke Luo
3+
* @author Huan Luo
44
*/
55
'use strict';
66

tests/lib/rules/folder-naming-convention.windows.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* @file The folder should follow the folder naming convention
3-
* @author Duke Luo
3+
* @author Huan Luo
44
*/
55
'use strict';
66

tests/lib/rules/no-index.posix.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* @file A file cannot be named "index"
3-
* @author Duke Luo
3+
* @author Huan Luo
44
*/
55
'use strict';
66

tests/lib/rules/no-index.windows.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* @file A file cannot be named "index"
3-
* @author Duke Luo
3+
* @author Huan Luo
44
*/
55
'use strict';
66

0 commit comments

Comments
 (0)