This is an automated email from the ASF dual-hosted git repository.

kezhenxu94 pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/skywalking-eyes.git

commit 3938361f335ae063bbcb4910e850cf1bfafff5b7
Author: Hoshea <[email protected]>
AuthorDate: Mon Nov 23 20:19:55 2020 +0800

    dev
---
 README.md | 26 +++++++++++++-------------
 1 file changed, 13 insertions(+), 13 deletions(-)

diff --git a/README.md b/README.md
index e2b1381..e58ab9e 100644
--- a/README.md
+++ b/README.md
@@ -33,43 +33,43 @@ Flags:
 
 ```json
 {
+  // What to check in strict mode, the order of strings can NOT be changed 
arbitrarily
   "licenseStrict": [
     "Licensed to the Apache Software Foundation (ASF) under one or more",
     "contributor license agreements.  See the NOTICE file distributed with",
     "..."
   ],
+
+  // What to check in loose mode, the order of strings can NOT be changed 
arbitrarily
   "licenseLoose": [
     "Apache License, Version 2.0"
   ],
+
+  // license-checker will check *.java and *.go
   "targetFiles": [
     "java",
-    "go",
-    "py",
-    "sh",
-    "graphql",
-    "yaml",
-    "yml"
+    "go"
   ],
+
   "exclude": {
+    // license-checker will NOT check these files
     "files": [
       ".gitignore",
       "NOTICE",
-      "go.mod",
-      "go.sum",
-      ".DS_Store",
       "LICENSE"
     ],
+
+    // license-checker will NOT check files whose names with these extensions
     "extensions": [
       "md",
       "xml",
       "json"
     ],
+
+    // license-checker will NOT check these directories
     "directories": [
       "bin",
-      ".github",
-      ".git",
-      ".idea",
-      "test"
+      ".github"
     ]
   }
 }

Reply via email to