diff --git a/test/test_all.py b/test/test_all.py index 6d125198..ee87bbc2 100644 --- a/test/test_all.py +++ b/test/test_all.py @@ -148,8 +148,12 @@ def check_logs(configuration, golden_logs_parent_path, logs_subpath): logs_subpath -- sub-path for both the actual and golden master logs """ logs = pathlib.Path(configuration["LogsFolder"], logs_subpath).read_text(encoding="utf-8") + # The table package used to format Arduino Lint output fills out the full column width with trailing whitespace. + # This might not match the golden master logs after the template substitution. + logs = "\n".join([line.rstrip() for line in logs.splitlines()]) golden_logs_template = golden_logs_parent_path.joinpath(logs_subpath).read_text(encoding="utf-8") + golden_logs_template = "\n".join([line.rstrip() for line in golden_logs_template.splitlines()]) # Fill template with mutable content golden_logs = string.Template(template=golden_logs_template).substitute( git_clones_folder=configuration["GitClonesFolder"] @@ -179,8 +183,11 @@ def check_db(configuration): # The checksum values in the db will be different on every run, so it's necessary to replace them with a # placeholder before comparing to the golden master release["Checksum"] = checksum_placeholder + # The table package used to format Arduino Lint output fills out the full column width with trailing whitespace. + # This might not match the golden master release's "Log" field after the template substitution. + release["Log"] = "\n".join([line.rstrip() for line in release["Log"].splitlines()]) - # Load golden index + # Load golden db golden_db_template = test_data_path.joinpath("test_all", "golden", "db.json").read_text(encoding="utf-8") # Fill in mutable content golden_db_string = string.Template(template=golden_db_template).substitute( @@ -189,6 +196,8 @@ def check_db(configuration): git_clones_folder=configuration["GitClonesFolder"], ) golden_db = json.loads(golden_db_string) + for release in golden_db["Releases"]: + release["Log"] = "\n".join([line.rstrip() for line in release["Log"].splitlines()]) # Compare db against golden master # Order of entries in the db is arbitrary so a simply equality assertion is not possible diff --git a/test/testdata/test_all/golden/db.json b/test/testdata/test_all/golden/db.json index 6372ca86..ec0d965a 100644 --- a/test/testdata/test_all/golden/db.json +++ b/test/testdata/test_all/golden/db.json @@ -32,7 +32,7 @@ "Checksum": "${checksum_placeholder}", "Includes": [], "Dependencies": [], - "Log": "\u003ca href=\"https://arduino.github.io/arduino-lint/latest/\"\u003eArduino Lint\u003c/a\u003e has suggestions for possible improvements:\n\u003cdetails\u003e\u003csummary\u003eClick to expand Arduino Lint report\u003c/summary\u003e\n\u003chr\u003e\nLinting library in ${git_clones_folder}/github.com/arduino-libraries/SpacebrewYun\nRule LD002 result: fail\nWARNING: No license file found. See: https://docs.github.com/en/free-pro-team@latest/github/creating-cloning-and-archiving-repositories/licensing-a-repository#detecting-a-license\nRule LD004 result: fail\nWARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples\n\nFinished linting project. Results:\nWarning count: 2\nError count: 0\nRules passed: true\n\n-------------------\n\n\n\u003chr\u003e\n\u003c/details\u003e" + "Log": "\u003ca href=\"https://arduino.github.io/arduino-lint/latest/\"\u003eArduino Lint\u003c/a\u003e has suggestions for possible improvements:\n\u003cdetails\u003e\u003csummary\u003eClick to expand Arduino Lint report\u003c/summary\u003e\n\u003chr\u003e\nLinting library in ${git_clones_folder}/github.com/arduino-libraries/SpacebrewYun\nWARNING: No license file found. See: \n https://docs.github.com/en/free-pro-team@latest/github/creating-cloning-and-archiving-repositories/licensing-a-repository#detecting-a-license\n (Rule LD002) \nWARNING: No example sketches found. Please provide examples. See: \n https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) \n\nLinter results for project: 0 ERRORS, 2 WARNINGS\n\n-------------------\n\n\n\u003chr\u003e\n\u003c/details\u003e" }, { "LibraryName": "ArduinoCloudThing", @@ -52,7 +52,7 @@ "Checksum": "${checksum_placeholder}", "Includes": [], "Dependencies": [], - "Log": "\u003ca href=\"https://arduino.github.io/arduino-lint/latest/\"\u003eArduino Lint\u003c/a\u003e has suggestions for possible improvements:\n\u003cdetails\u003e\u003csummary\u003eClick to expand Arduino Lint report\u003c/summary\u003e\n\u003chr\u003e\nLinting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing\nRule LP010 result: fail\nWARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters.\nRule LP013 result: fail\nWARNING: Library name ArduinoCloudThing is missing the \"Arduino_\" prefix. All new official library names must use this prefix.\nRule LP036 result: fail\nWARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed.\nRule LD003 result: fail\nWARNING: Sketch(es) found outside examples and extras folders: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/test/ArduinoCloudThing_test. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples\n\nFinished linting project. Results:\nWarning count: 4\nError count: 0\nRules passed: true\n\n-------------------\n\nLinting sketch in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/examples/ReadAndWrite\n\nFinished linting project. Results:\nWarning count: 0\nError count: 0\nRules passed: true\n\n-------------------\n\nLinting sketch in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/examples/SimpleCloudButton\n\nFinished linting project. Results:\nWarning count: 0\nError count: 0\nRules passed: true\n\n-------------------\n\nLinting sketch in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/examples/SimpleCloudButtonExpandedNewAPI\n\nFinished linting project. Results:\nWarning count: 0\nError count: 0\nRules passed: true\n\n-------------------\n\nLinting sketch in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/examples/SimpleCloudButtonYun\n\nFinished linting project. Results:\nWarning count: 0\nError count: 0\nRules passed: true\n\n-------------------\n\nFinished linting projects. Results:\nWarning count: 4\nError count: 0\nRules passed: true\n\n\u003chr\u003e\n\u003c/details\u003e" + "Log": "\u003ca href=\"https://arduino.github.io/arduino-lint/latest/\"\u003eArduino Lint\u003c/a\u003e has suggestions for possible improvements:\n\u003cdetails\u003e\u003csummary\u003eClick to expand Arduino Lint report\u003c/summary\u003e\n\u003chr\u003e\nLinting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing\nWARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule \n LP010) \nWARNING: Library name ArduinoCloudThing is missing the \"Arduino_\" prefix. All new official library names must use this \n prefix. (Rule LP013) \nWARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy \n is not needed. (Rule LP036) \nWARNING: Sketch(es) found outside examples and extras folders: \n ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, \n ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList,\n ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/test/ArduinoCloudThing_test. See: \n https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD003) \n\nLinter results for project: 0 ERRORS, 4 WARNINGS\n\n-------------------\n\nLinting sketch in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/examples/ReadAndWrite\n\nLinter results for project: no errors or warnings\n\n-------------------\n\nLinting sketch in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/examples/SimpleCloudButton\n\nLinter results for project: no errors or warnings\n\n-------------------\n\nLinting sketch in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/examples/SimpleCloudButtonExpandedNewAPI\n\nLinter results for project: no errors or warnings\n\n-------------------\n\nLinting sketch in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/examples/SimpleCloudButtonYun\n\nLinter results for project: no errors or warnings\n\n-------------------\n\nLinter results for projects: 0 ERRORS, 4 WARNINGS\n\n\u003chr\u003e\n\u003c/details\u003e" }, { "LibraryName": "SpacebrewYun", @@ -72,7 +72,7 @@ "Checksum": "${checksum_placeholder}", "Includes": [], "Dependencies": [], - "Log": "\u003ca href=\"https://arduino.github.io/arduino-lint/latest/\"\u003eArduino Lint\u003c/a\u003e has suggestions for possible improvements:\n\u003cdetails\u003e\u003csummary\u003eClick to expand Arduino Lint report\u003c/summary\u003e\n\u003chr\u003e\nLinting library in ${git_clones_folder}/github.com/arduino-libraries/SpacebrewYun\nRule LD002 result: fail\nWARNING: No license file found. See: https://docs.github.com/en/free-pro-team@latest/github/creating-cloning-and-archiving-repositories/licensing-a-repository#detecting-a-license\n\nFinished linting project. Results:\nWarning count: 1\nError count: 0\nRules passed: true\n\n-------------------\n\nLinting sketch in ${git_clones_folder}/github.com/arduino-libraries/SpacebrewYun/examples/inputOutput\n\nFinished linting project. Results:\nWarning count: 0\nError count: 0\nRules passed: true\n\n-------------------\n\nLinting sketch in ${git_clones_folder}/github.com/arduino-libraries/SpacebrewYun/examples/spacebrewBoolean\n\nFinished linting project. Results:\nWarning count: 0\nError count: 0\nRules passed: true\n\n-------------------\n\nLinting sketch in ${git_clones_folder}/github.com/arduino-libraries/SpacebrewYun/examples/spacebrewRange\n\nFinished linting project. Results:\nWarning count: 0\nError count: 0\nRules passed: true\n\n-------------------\n\nLinting sketch in ${git_clones_folder}/github.com/arduino-libraries/SpacebrewYun/examples/spacebrewString\n\nFinished linting project. Results:\nWarning count: 0\nError count: 0\nRules passed: true\n\n-------------------\n\nFinished linting projects. Results:\nWarning count: 1\nError count: 0\nRules passed: true\n\n\u003chr\u003e\n\u003c/details\u003e" + "Log": "\u003ca href=\"https://arduino.github.io/arduino-lint/latest/\"\u003eArduino Lint\u003c/a\u003e has suggestions for possible improvements:\n\u003cdetails\u003e\u003csummary\u003eClick to expand Arduino Lint report\u003c/summary\u003e\n\u003chr\u003e\nLinting library in ${git_clones_folder}/github.com/arduino-libraries/SpacebrewYun\nWARNING: No license file found. See: \n https://docs.github.com/en/free-pro-team@latest/github/creating-cloning-and-archiving-repositories/licensing-a-repository#detecting-a-license\n (Rule LD002) \n\nLinter results for project: 0 ERRORS, 1 WARNINGS\n\n-------------------\n\nLinting sketch in ${git_clones_folder}/github.com/arduino-libraries/SpacebrewYun/examples/inputOutput\n\nLinter results for project: no errors or warnings\n\n-------------------\n\nLinting sketch in ${git_clones_folder}/github.com/arduino-libraries/SpacebrewYun/examples/spacebrewBoolean\n\nLinter results for project: no errors or warnings\n\n-------------------\n\nLinting sketch in ${git_clones_folder}/github.com/arduino-libraries/SpacebrewYun/examples/spacebrewRange\n\nLinter results for project: no errors or warnings\n\n-------------------\n\nLinting sketch in ${git_clones_folder}/github.com/arduino-libraries/SpacebrewYun/examples/spacebrewString\n\nLinter results for project: no errors or warnings\n\n-------------------\n\nLinter results for projects: 0 ERRORS, 1 WARNINGS\n\n\u003chr\u003e\n\u003c/details\u003e" }, { "LibraryName": "SpacebrewYun", @@ -97,7 +97,7 @@ "Version": "" } ], - "Log": "\u003ca href=\"https://arduino.github.io/arduino-lint/latest/\"\u003eArduino Lint\u003c/a\u003e has suggestions for possible improvements:\n\u003cdetails\u003e\u003csummary\u003eClick to expand Arduino Lint report\u003c/summary\u003e\n\u003chr\u003e\nLinting library in ${git_clones_folder}/github.com/arduino-libraries/SpacebrewYun\nRule LD002 result: fail\nWARNING: No license file found. See: https://docs.github.com/en/free-pro-team@latest/github/creating-cloning-and-archiving-repositories/licensing-a-repository#detecting-a-license\n\nFinished linting project. Results:\nWarning count: 1\nError count: 0\nRules passed: true\n\n-------------------\n\nLinting sketch in ${git_clones_folder}/github.com/arduino-libraries/SpacebrewYun/examples/inputOutput\n\nFinished linting project. Results:\nWarning count: 0\nError count: 0\nRules passed: true\n\n-------------------\n\nLinting sketch in ${git_clones_folder}/github.com/arduino-libraries/SpacebrewYun/examples/spacebrewBoolean\n\nFinished linting project. Results:\nWarning count: 0\nError count: 0\nRules passed: true\n\n-------------------\n\nLinting sketch in ${git_clones_folder}/github.com/arduino-libraries/SpacebrewYun/examples/spacebrewRange\n\nFinished linting project. Results:\nWarning count: 0\nError count: 0\nRules passed: true\n\n-------------------\n\nLinting sketch in ${git_clones_folder}/github.com/arduino-libraries/SpacebrewYun/examples/spacebrewString\n\nFinished linting project. Results:\nWarning count: 0\nError count: 0\nRules passed: true\n\n-------------------\n\nFinished linting projects. Results:\nWarning count: 1\nError count: 0\nRules passed: true\n\n\u003chr\u003e\n\u003c/details\u003e" + "Log": "\u003ca href=\"https://arduino.github.io/arduino-lint/latest/\"\u003eArduino Lint\u003c/a\u003e has suggestions for possible improvements:\n\u003cdetails\u003e\u003csummary\u003eClick to expand Arduino Lint report\u003c/summary\u003e\n\u003chr\u003e\nLinting library in ${git_clones_folder}/github.com/arduino-libraries/SpacebrewYun\nWARNING: No license file found. See: \n https://docs.github.com/en/free-pro-team@latest/github/creating-cloning-and-archiving-repositories/licensing-a-repository#detecting-a-license\n (Rule LD002) \n\nLinter results for project: 0 ERRORS, 1 WARNINGS\n\n-------------------\n\nLinting sketch in ${git_clones_folder}/github.com/arduino-libraries/SpacebrewYun/examples/inputOutput\n\nLinter results for project: no errors or warnings\n\n-------------------\n\nLinting sketch in ${git_clones_folder}/github.com/arduino-libraries/SpacebrewYun/examples/spacebrewBoolean\n\nLinter results for project: no errors or warnings\n\n-------------------\n\nLinting sketch in ${git_clones_folder}/github.com/arduino-libraries/SpacebrewYun/examples/spacebrewRange\n\nLinter results for project: no errors or warnings\n\n-------------------\n\nLinting sketch in ${git_clones_folder}/github.com/arduino-libraries/SpacebrewYun/examples/spacebrewString\n\nLinter results for project: no errors or warnings\n\n-------------------\n\nLinter results for projects: 0 ERRORS, 1 WARNINGS\n\n\u003chr\u003e\n\u003c/details\u003e" }, { "LibraryName": "ArduinoCloudThing", @@ -117,7 +117,7 @@ "Checksum": "${checksum_placeholder}", "Includes": [], "Dependencies": [], - "Log": "\u003ca href=\"https://arduino.github.io/arduino-lint/latest/\"\u003eArduino Lint\u003c/a\u003e has suggestions for possible improvements:\n\u003cdetails\u003e\u003csummary\u003eClick to expand Arduino Lint report\u003c/summary\u003e\n\u003chr\u003e\nLinting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing\nRule LP010 result: fail\nWARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters.\nRule LP013 result: fail\nWARNING: Library name ArduinoCloudThing is missing the \"Arduino_\" prefix. All new official library names must use this prefix.\nRule LP036 result: fail\nWARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed.\nRule LD003 result: fail\nWARNING: Sketch(es) found outside examples and extras folders: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples\nRule LD004 result: fail\nWARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples\n\nFinished linting project. Results:\nWarning count: 5\nError count: 0\nRules passed: true\n\n-------------------\n\n\n\u003chr\u003e\n\u003c/details\u003e" + "Log": "\u003ca href=\"https://arduino.github.io/arduino-lint/latest/\"\u003eArduino Lint\u003c/a\u003e has suggestions for possible improvements:\n\u003cdetails\u003e\u003csummary\u003eClick to expand Arduino Lint report\u003c/summary\u003e\n\u003chr\u003e\nLinting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing\nWARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule \n LP010) \nWARNING: Library name ArduinoCloudThing is missing the \"Arduino_\" prefix. All new official library names must use this \n prefix. (Rule LP013) \nWARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy \n is not needed. (Rule LP036) \nWARNING: Sketch(es) found outside examples and extras folders: \n ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, \n ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList.\n See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD003) \nWARNING: No example sketches found. Please provide examples. See: \n https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) \n\nLinter results for project: 0 ERRORS, 5 WARNINGS\n\n-------------------\n\n\n\u003chr\u003e\n\u003c/details\u003e" }, { "LibraryName": "ArduinoCloudThing", @@ -137,7 +137,7 @@ "Checksum": "${checksum_placeholder}", "Includes": [], "Dependencies": [], - "Log": "\u003ca href=\"https://arduino.github.io/arduino-lint/latest/\"\u003eArduino Lint\u003c/a\u003e has suggestions for possible improvements:\n\u003cdetails\u003e\u003csummary\u003eClick to expand Arduino Lint report\u003c/summary\u003e\n\u003chr\u003e\nLinting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing\nRule LP010 result: fail\nWARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters.\nRule LP013 result: fail\nWARNING: Library name ArduinoCloudThing is missing the \"Arduino_\" prefix. All new official library names must use this prefix.\nRule LP036 result: fail\nWARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed.\nRule LD003 result: fail\nWARNING: Sketch(es) found outside examples and extras folders: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples\nRule LD004 result: fail\nWARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples\n\nFinished linting project. Results:\nWarning count: 5\nError count: 0\nRules passed: true\n\n-------------------\n\n\n\u003chr\u003e\n\u003c/details\u003e" + "Log": "\u003ca href=\"https://arduino.github.io/arduino-lint/latest/\"\u003eArduino Lint\u003c/a\u003e has suggestions for possible improvements:\n\u003cdetails\u003e\u003csummary\u003eClick to expand Arduino Lint report\u003c/summary\u003e\n\u003chr\u003e\nLinting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing\nWARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule \n LP010) \nWARNING: Library name ArduinoCloudThing is missing the \"Arduino_\" prefix. All new official library names must use this \n prefix. (Rule LP013) \nWARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy \n is not needed. (Rule LP036) \nWARNING: Sketch(es) found outside examples and extras folders: \n ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, \n ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList.\n See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD003) \nWARNING: No example sketches found. Please provide examples. See: \n https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) \n\nLinter results for project: 0 ERRORS, 5 WARNINGS\n\n-------------------\n\n\n\u003chr\u003e\n\u003c/details\u003e" }, { "LibraryName": "ArduinoCloudThing", @@ -157,7 +157,7 @@ "Checksum": "${checksum_placeholder}", "Includes": [], "Dependencies": [], - "Log": "\u003ca href=\"https://arduino.github.io/arduino-lint/latest/\"\u003eArduino Lint\u003c/a\u003e has suggestions for possible improvements:\n\u003cdetails\u003e\u003csummary\u003eClick to expand Arduino Lint report\u003c/summary\u003e\n\u003chr\u003e\nLinting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing\nRule LP010 result: fail\nWARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters.\nRule LP013 result: fail\nWARNING: Library name ArduinoCloudThing is missing the \"Arduino_\" prefix. All new official library names must use this prefix.\nRule LP036 result: fail\nWARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed.\nRule LD003 result: fail\nWARNING: Sketch(es) found outside examples and extras folders: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples\nRule LD004 result: fail\nWARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples\n\nFinished linting project. Results:\nWarning count: 5\nError count: 0\nRules passed: true\n\n-------------------\n\n\n\u003chr\u003e\n\u003c/details\u003e" + "Log": "\u003ca href=\"https://arduino.github.io/arduino-lint/latest/\"\u003eArduino Lint\u003c/a\u003e has suggestions for possible improvements:\n\u003cdetails\u003e\u003csummary\u003eClick to expand Arduino Lint report\u003c/summary\u003e\n\u003chr\u003e\nLinting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing\nWARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule \n LP010) \nWARNING: Library name ArduinoCloudThing is missing the \"Arduino_\" prefix. All new official library names must use this \n prefix. (Rule LP013) \nWARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy \n is not needed. (Rule LP036) \nWARNING: Sketch(es) found outside examples and extras folders: \n ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, \n ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList.\n See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD003) \nWARNING: No example sketches found. Please provide examples. See: \n https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) \n\nLinter results for project: 0 ERRORS, 5 WARNINGS\n\n-------------------\n\n\n\u003chr\u003e\n\u003c/details\u003e" }, { "LibraryName": "ArduinoCloudThing", @@ -177,7 +177,7 @@ "Checksum": "${checksum_placeholder}", "Includes": [], "Dependencies": [], - "Log": "\u003ca href=\"https://arduino.github.io/arduino-lint/latest/\"\u003eArduino Lint\u003c/a\u003e has suggestions for possible improvements:\n\u003cdetails\u003e\u003csummary\u003eClick to expand Arduino Lint report\u003c/summary\u003e\n\u003chr\u003e\nLinting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing\nRule LP010 result: fail\nWARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters.\nRule LP013 result: fail\nWARNING: Library name ArduinoCloudThing is missing the \"Arduino_\" prefix. All new official library names must use this prefix.\nRule LP036 result: fail\nWARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed.\nRule LD003 result: fail\nWARNING: Sketch(es) found outside examples and extras folders: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples\nRule LD004 result: fail\nWARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples\n\nFinished linting project. Results:\nWarning count: 5\nError count: 0\nRules passed: true\n\n-------------------\n\n\n\u003chr\u003e\n\u003c/details\u003e" + "Log": "\u003ca href=\"https://arduino.github.io/arduino-lint/latest/\"\u003eArduino Lint\u003c/a\u003e has suggestions for possible improvements:\n\u003cdetails\u003e\u003csummary\u003eClick to expand Arduino Lint report\u003c/summary\u003e\n\u003chr\u003e\nLinting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing\nWARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule \n LP010) \nWARNING: Library name ArduinoCloudThing is missing the \"Arduino_\" prefix. All new official library names must use this \n prefix. (Rule LP013) \nWARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy \n is not needed. (Rule LP036) \nWARNING: Sketch(es) found outside examples and extras folders: \n ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, \n ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList.\n See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD003) \nWARNING: No example sketches found. Please provide examples. See: \n https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) \n\nLinter results for project: 0 ERRORS, 5 WARNINGS\n\n-------------------\n\n\n\u003chr\u003e\n\u003c/details\u003e" }, { "LibraryName": "ArduinoCloudThing", @@ -197,7 +197,7 @@ "Checksum": "${checksum_placeholder}", "Includes": [], "Dependencies": [], - "Log": "\u003ca href=\"https://arduino.github.io/arduino-lint/latest/\"\u003eArduino Lint\u003c/a\u003e has suggestions for possible improvements:\n\u003cdetails\u003e\u003csummary\u003eClick to expand Arduino Lint report\u003c/summary\u003e\n\u003chr\u003e\nLinting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing\nRule LP010 result: fail\nWARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters.\nRule LP013 result: fail\nWARNING: Library name ArduinoCloudThing is missing the \"Arduino_\" prefix. All new official library names must use this prefix.\nRule LP036 result: fail\nWARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed.\nRule LD003 result: fail\nWARNING: Sketch(es) found outside examples and extras folders: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples\nRule LD004 result: fail\nWARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples\n\nFinished linting project. Results:\nWarning count: 5\nError count: 0\nRules passed: true\n\n-------------------\n\n\n\u003chr\u003e\n\u003c/details\u003e" + "Log": "\u003ca href=\"https://arduino.github.io/arduino-lint/latest/\"\u003eArduino Lint\u003c/a\u003e has suggestions for possible improvements:\n\u003cdetails\u003e\u003csummary\u003eClick to expand Arduino Lint report\u003c/summary\u003e\n\u003chr\u003e\nLinting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing\nWARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule \n LP010) \nWARNING: Library name ArduinoCloudThing is missing the \"Arduino_\" prefix. All new official library names must use this \n prefix. (Rule LP013) \nWARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy \n is not needed. (Rule LP036) \nWARNING: Sketch(es) found outside examples and extras folders: \n ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, \n ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList.\n See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD003) \nWARNING: No example sketches found. Please provide examples. See: \n https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) \n\nLinter results for project: 0 ERRORS, 5 WARNINGS\n\n-------------------\n\n\n\u003chr\u003e\n\u003c/details\u003e" }, { "LibraryName": "ArduinoCloudThing", @@ -217,7 +217,7 @@ "Checksum": "${checksum_placeholder}", "Includes": [], "Dependencies": [], - "Log": "\u003ca href=\"https://arduino.github.io/arduino-lint/latest/\"\u003eArduino Lint\u003c/a\u003e has suggestions for possible improvements:\n\u003cdetails\u003e\u003csummary\u003eClick to expand Arduino Lint report\u003c/summary\u003e\n\u003chr\u003e\nLinting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing\nRule LP010 result: fail\nWARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters.\nRule LP013 result: fail\nWARNING: Library name ArduinoCloudThing is missing the \"Arduino_\" prefix. All new official library names must use this prefix.\nRule LP036 result: fail\nWARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed.\nRule LD003 result: fail\nWARNING: Sketch(es) found outside examples and extras folders: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples\nRule LD004 result: fail\nWARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples\n\nFinished linting project. Results:\nWarning count: 5\nError count: 0\nRules passed: true\n\n-------------------\n\n\n\u003chr\u003e\n\u003c/details\u003e" + "Log": "\u003ca href=\"https://arduino.github.io/arduino-lint/latest/\"\u003eArduino Lint\u003c/a\u003e has suggestions for possible improvements:\n\u003cdetails\u003e\u003csummary\u003eClick to expand Arduino Lint report\u003c/summary\u003e\n\u003chr\u003e\nLinting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing\nWARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule \n LP010) \nWARNING: Library name ArduinoCloudThing is missing the \"Arduino_\" prefix. All new official library names must use this \n prefix. (Rule LP013) \nWARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy \n is not needed. (Rule LP036) \nWARNING: Sketch(es) found outside examples and extras folders: \n ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, \n ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList.\n See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD003) \nWARNING: No example sketches found. Please provide examples. See: \n https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) \n\nLinter results for project: 0 ERRORS, 5 WARNINGS\n\n-------------------\n\n\n\u003chr\u003e\n\u003c/details\u003e" }, { "LibraryName": "ArduinoCloudThing", @@ -237,7 +237,7 @@ "Checksum": "${checksum_placeholder}", "Includes": [], "Dependencies": [], - "Log": "\u003ca href=\"https://arduino.github.io/arduino-lint/latest/\"\u003eArduino Lint\u003c/a\u003e has suggestions for possible improvements:\n\u003cdetails\u003e\u003csummary\u003eClick to expand Arduino Lint report\u003c/summary\u003e\n\u003chr\u003e\nLinting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing\nRule LP010 result: fail\nWARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters.\nRule LP013 result: fail\nWARNING: Library name ArduinoCloudThing is missing the \"Arduino_\" prefix. All new official library names must use this prefix.\nRule LP036 result: fail\nWARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed.\nRule LD003 result: fail\nWARNING: Sketch(es) found outside examples and extras folders: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples\nRule LD004 result: fail\nWARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples\n\nFinished linting project. Results:\nWarning count: 5\nError count: 0\nRules passed: true\n\n-------------------\n\n\n\u003chr\u003e\n\u003c/details\u003e" + "Log": "\u003ca href=\"https://arduino.github.io/arduino-lint/latest/\"\u003eArduino Lint\u003c/a\u003e has suggestions for possible improvements:\n\u003cdetails\u003e\u003csummary\u003eClick to expand Arduino Lint report\u003c/summary\u003e\n\u003chr\u003e\nLinting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing\nWARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule \n LP010) \nWARNING: Library name ArduinoCloudThing is missing the \"Arduino_\" prefix. All new official library names must use this \n prefix. (Rule LP013) \nWARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy \n is not needed. (Rule LP036) \nWARNING: Sketch(es) found outside examples and extras folders: \n ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, \n ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList.\n See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD003) \nWARNING: No example sketches found. Please provide examples. See: \n https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) \n\nLinter results for project: 0 ERRORS, 5 WARNINGS\n\n-------------------\n\n\n\u003chr\u003e\n\u003c/details\u003e" }, { "LibraryName": "ArduinoCloudThing", @@ -257,7 +257,7 @@ "Checksum": "${checksum_placeholder}", "Includes": [], "Dependencies": [], - "Log": "\u003ca href=\"https://arduino.github.io/arduino-lint/latest/\"\u003eArduino Lint\u003c/a\u003e has suggestions for possible improvements:\n\u003cdetails\u003e\u003csummary\u003eClick to expand Arduino Lint report\u003c/summary\u003e\n\u003chr\u003e\nLinting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing\nRule LP010 result: fail\nWARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters.\nRule LP013 result: fail\nWARNING: Library name ArduinoCloudThing is missing the \"Arduino_\" prefix. All new official library names must use this prefix.\nRule LP036 result: fail\nWARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed.\nRule LD003 result: fail\nWARNING: Sketch(es) found outside examples and extras folders: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples\nRule LD004 result: fail\nWARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples\n\nFinished linting project. Results:\nWarning count: 5\nError count: 0\nRules passed: true\n\n-------------------\n\n\n\u003chr\u003e\n\u003c/details\u003e" + "Log": "\u003ca href=\"https://arduino.github.io/arduino-lint/latest/\"\u003eArduino Lint\u003c/a\u003e has suggestions for possible improvements:\n\u003cdetails\u003e\u003csummary\u003eClick to expand Arduino Lint report\u003c/summary\u003e\n\u003chr\u003e\nLinting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing\nWARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule \n LP010) \nWARNING: Library name ArduinoCloudThing is missing the \"Arduino_\" prefix. All new official library names must use this \n prefix. (Rule LP013) \nWARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy \n is not needed. (Rule LP036) \nWARNING: Sketch(es) found outside examples and extras folders: \n ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, \n ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList.\n See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD003) \nWARNING: No example sketches found. Please provide examples. See: \n https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) \n\nLinter results for project: 0 ERRORS, 5 WARNINGS\n\n-------------------\n\n\n\u003chr\u003e\n\u003c/details\u003e" }, { "LibraryName": "ArduinoCloudThing", @@ -277,7 +277,7 @@ "Checksum": "${checksum_placeholder}", "Includes": [], "Dependencies": [], - "Log": "\u003ca href=\"https://arduino.github.io/arduino-lint/latest/\"\u003eArduino Lint\u003c/a\u003e has suggestions for possible improvements:\n\u003cdetails\u003e\u003csummary\u003eClick to expand Arduino Lint report\u003c/summary\u003e\n\u003chr\u003e\nLinting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing\nRule LP010 result: fail\nWARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters.\nRule LP013 result: fail\nWARNING: Library name ArduinoCloudThing is missing the \"Arduino_\" prefix. All new official library names must use this prefix.\nRule LP036 result: fail\nWARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed.\nRule LD003 result: fail\nWARNING: Sketch(es) found outside examples and extras folders: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples\nRule LD004 result: fail\nWARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples\n\nFinished linting project. Results:\nWarning count: 5\nError count: 0\nRules passed: true\n\n-------------------\n\n\n\u003chr\u003e\n\u003c/details\u003e" + "Log": "\u003ca href=\"https://arduino.github.io/arduino-lint/latest/\"\u003eArduino Lint\u003c/a\u003e has suggestions for possible improvements:\n\u003cdetails\u003e\u003csummary\u003eClick to expand Arduino Lint report\u003c/summary\u003e\n\u003chr\u003e\nLinting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing\nWARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule \n LP010) \nWARNING: Library name ArduinoCloudThing is missing the \"Arduino_\" prefix. All new official library names must use this \n prefix. (Rule LP013) \nWARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy \n is not needed. (Rule LP036) \nWARNING: Sketch(es) found outside examples and extras folders: \n ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, \n ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList.\n See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD003) \nWARNING: No example sketches found. Please provide examples. See: \n https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) \n\nLinter results for project: 0 ERRORS, 5 WARNINGS\n\n-------------------\n\n\n\u003chr\u003e\n\u003c/details\u003e" }, { "LibraryName": "ArduinoCloudThing", @@ -297,7 +297,7 @@ "Checksum": "${checksum_placeholder}", "Includes": [], "Dependencies": [], - "Log": "\u003ca href=\"https://arduino.github.io/arduino-lint/latest/\"\u003eArduino Lint\u003c/a\u003e has suggestions for possible improvements:\n\u003cdetails\u003e\u003csummary\u003eClick to expand Arduino Lint report\u003c/summary\u003e\n\u003chr\u003e\nLinting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing\nRule LP010 result: fail\nWARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters.\nRule LP013 result: fail\nWARNING: Library name ArduinoCloudThing is missing the \"Arduino_\" prefix. All new official library names must use this prefix.\nRule LP036 result: fail\nWARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed.\nRule LD003 result: fail\nWARNING: Sketch(es) found outside examples and extras folders: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples\nRule LD004 result: fail\nWARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples\n\nFinished linting project. Results:\nWarning count: 5\nError count: 0\nRules passed: true\n\n-------------------\n\n\n\u003chr\u003e\n\u003c/details\u003e" + "Log": "\u003ca href=\"https://arduino.github.io/arduino-lint/latest/\"\u003eArduino Lint\u003c/a\u003e has suggestions for possible improvements:\n\u003cdetails\u003e\u003csummary\u003eClick to expand Arduino Lint report\u003c/summary\u003e\n\u003chr\u003e\nLinting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing\nWARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule \n LP010) \nWARNING: Library name ArduinoCloudThing is missing the \"Arduino_\" prefix. All new official library names must use this \n prefix. (Rule LP013) \nWARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy \n is not needed. (Rule LP036) \nWARNING: Sketch(es) found outside examples and extras folders: \n ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, \n ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList.\n See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD003) \nWARNING: No example sketches found. Please provide examples. See: \n https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) \n\nLinter results for project: 0 ERRORS, 5 WARNINGS\n\n-------------------\n\n\n\u003chr\u003e\n\u003c/details\u003e" }, { "LibraryName": "ArduinoCloudThing", @@ -317,7 +317,7 @@ "Checksum": "${checksum_placeholder}", "Includes": [], "Dependencies": [], - "Log": "\u003ca href=\"https://arduino.github.io/arduino-lint/latest/\"\u003eArduino Lint\u003c/a\u003e has suggestions for possible improvements:\n\u003cdetails\u003e\u003csummary\u003eClick to expand Arduino Lint report\u003c/summary\u003e\n\u003chr\u003e\nLinting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing\nRule LP010 result: fail\nWARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters.\nRule LP013 result: fail\nWARNING: Library name ArduinoCloudThing is missing the \"Arduino_\" prefix. All new official library names must use this prefix.\nRule LP036 result: fail\nWARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed.\nRule LD003 result: fail\nWARNING: Sketch(es) found outside examples and extras folders: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples\nRule LD004 result: fail\nWARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples\n\nFinished linting project. Results:\nWarning count: 5\nError count: 0\nRules passed: true\n\n-------------------\n\n\n\u003chr\u003e\n\u003c/details\u003e" + "Log": "\u003ca href=\"https://arduino.github.io/arduino-lint/latest/\"\u003eArduino Lint\u003c/a\u003e has suggestions for possible improvements:\n\u003cdetails\u003e\u003csummary\u003eClick to expand Arduino Lint report\u003c/summary\u003e\n\u003chr\u003e\nLinting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing\nWARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule \n LP010) \nWARNING: Library name ArduinoCloudThing is missing the \"Arduino_\" prefix. All new official library names must use this \n prefix. (Rule LP013) \nWARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy \n is not needed. (Rule LP036) \nWARNING: Sketch(es) found outside examples and extras folders: \n ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, \n ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList.\n See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD003) \nWARNING: No example sketches found. Please provide examples. See: \n https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) \n\nLinter results for project: 0 ERRORS, 5 WARNINGS\n\n-------------------\n\n\n\u003chr\u003e\n\u003c/details\u003e" }, { "LibraryName": "ArduinoCloudThing", @@ -337,7 +337,7 @@ "Checksum": "${checksum_placeholder}", "Includes": [], "Dependencies": [], - "Log": "\u003ca href=\"https://arduino.github.io/arduino-lint/latest/\"\u003eArduino Lint\u003c/a\u003e has suggestions for possible improvements:\n\u003cdetails\u003e\u003csummary\u003eClick to expand Arduino Lint report\u003c/summary\u003e\n\u003chr\u003e\nLinting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing\nRule LP010 result: fail\nWARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters.\nRule LP013 result: fail\nWARNING: Library name ArduinoCloudThing is missing the \"Arduino_\" prefix. All new official library names must use this prefix.\nRule LP036 result: fail\nWARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed.\nRule LD004 result: fail\nWARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples\n\nFinished linting project. Results:\nWarning count: 4\nError count: 0\nRules passed: true\n\n-------------------\n\n\n\u003chr\u003e\n\u003c/details\u003e" + "Log": "\u003ca href=\"https://arduino.github.io/arduino-lint/latest/\"\u003eArduino Lint\u003c/a\u003e has suggestions for possible improvements:\n\u003cdetails\u003e\u003csummary\u003eClick to expand Arduino Lint report\u003c/summary\u003e\n\u003chr\u003e\nLinting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing\nWARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule \n LP010) \nWARNING: Library name ArduinoCloudThing is missing the \"Arduino_\" prefix. All new official library names must use this \n prefix. (Rule LP013) \nWARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy \n is not needed. (Rule LP036) \nWARNING: No example sketches found. Please provide examples. See: \n https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) \n\nLinter results for project: 0 ERRORS, 4 WARNINGS\n\n-------------------\n\n\n\u003chr\u003e\n\u003c/details\u003e" }, { "LibraryName": "ArduinoCloudThing", @@ -357,7 +357,7 @@ "Checksum": "${checksum_placeholder}", "Includes": [], "Dependencies": [], - "Log": "\u003ca href=\"https://arduino.github.io/arduino-lint/latest/\"\u003eArduino Lint\u003c/a\u003e has suggestions for possible improvements:\n\u003cdetails\u003e\u003csummary\u003eClick to expand Arduino Lint report\u003c/summary\u003e\n\u003chr\u003e\nLinting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing\nRule LP010 result: fail\nWARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters.\nRule LP013 result: fail\nWARNING: Library name ArduinoCloudThing is missing the \"Arduino_\" prefix. All new official library names must use this prefix.\nRule LP036 result: fail\nWARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed.\nRule LD004 result: fail\nWARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples\n\nFinished linting project. Results:\nWarning count: 4\nError count: 0\nRules passed: true\n\n-------------------\n\n\n\u003chr\u003e\n\u003c/details\u003e" + "Log": "\u003ca href=\"https://arduino.github.io/arduino-lint/latest/\"\u003eArduino Lint\u003c/a\u003e has suggestions for possible improvements:\n\u003cdetails\u003e\u003csummary\u003eClick to expand Arduino Lint report\u003c/summary\u003e\n\u003chr\u003e\nLinting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing\nWARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule \n LP010) \nWARNING: Library name ArduinoCloudThing is missing the \"Arduino_\" prefix. All new official library names must use this \n prefix. (Rule LP013) \nWARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy \n is not needed. (Rule LP036) \nWARNING: No example sketches found. Please provide examples. See: \n https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) \n\nLinter results for project: 0 ERRORS, 4 WARNINGS\n\n-------------------\n\n\n\u003chr\u003e\n\u003c/details\u003e" }, { "LibraryName": "ArduinoCloudThing", @@ -382,7 +382,7 @@ "Version": "" } ], - "Log": "\u003ca href=\"https://arduino.github.io/arduino-lint/latest/\"\u003eArduino Lint\u003c/a\u003e has suggestions for possible improvements:\n\u003cdetails\u003e\u003csummary\u003eClick to expand Arduino Lint report\u003c/summary\u003e\n\u003chr\u003e\nLinting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing\nRule LP010 result: fail\nWARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters.\nRule LP013 result: fail\nWARNING: Library name ArduinoCloudThing is missing the \"Arduino_\" prefix. All new official library names must use this prefix.\nRule LP036 result: fail\nWARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed.\nRule LD004 result: fail\nWARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples\n\nFinished linting project. Results:\nWarning count: 4\nError count: 0\nRules passed: true\n\n-------------------\n\n\n\u003chr\u003e\n\u003c/details\u003e" + "Log": "\u003ca href=\"https://arduino.github.io/arduino-lint/latest/\"\u003eArduino Lint\u003c/a\u003e has suggestions for possible improvements:\n\u003cdetails\u003e\u003csummary\u003eClick to expand Arduino Lint report\u003c/summary\u003e\n\u003chr\u003e\nLinting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing\nWARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule \n LP010) \nWARNING: Library name ArduinoCloudThing is missing the \"Arduino_\" prefix. All new official library names must use this \n prefix. (Rule LP013) \nWARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy \n is not needed. (Rule LP036) \nWARNING: No example sketches found. Please provide examples. See: \n https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) \n\nLinter results for project: 0 ERRORS, 4 WARNINGS\n\n-------------------\n\n\n\u003chr\u003e\n\u003c/details\u003e" }, { "LibraryName": "ArduinoCloudThing", @@ -407,7 +407,7 @@ "Version": "" } ], - "Log": "\u003ca href=\"https://arduino.github.io/arduino-lint/latest/\"\u003eArduino Lint\u003c/a\u003e has suggestions for possible improvements:\n\u003cdetails\u003e\u003csummary\u003eClick to expand Arduino Lint report\u003c/summary\u003e\n\u003chr\u003e\nLinting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing\nRule LP010 result: fail\nWARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters.\nRule LP013 result: fail\nWARNING: Library name ArduinoCloudThing is missing the \"Arduino_\" prefix. All new official library names must use this prefix.\nRule LP036 result: fail\nWARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed.\nRule LD004 result: fail\nWARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples\n\nFinished linting project. Results:\nWarning count: 4\nError count: 0\nRules passed: true\n\n-------------------\n\n\n\u003chr\u003e\n\u003c/details\u003e" + "Log": "\u003ca href=\"https://arduino.github.io/arduino-lint/latest/\"\u003eArduino Lint\u003c/a\u003e has suggestions for possible improvements:\n\u003cdetails\u003e\u003csummary\u003eClick to expand Arduino Lint report\u003c/summary\u003e\n\u003chr\u003e\nLinting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing\nWARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule \n LP010) \nWARNING: Library name ArduinoCloudThing is missing the \"Arduino_\" prefix. All new official library names must use this \n prefix. (Rule LP013) \nWARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy \n is not needed. (Rule LP036) \nWARNING: No example sketches found. Please provide examples. See: \n https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) \n\nLinter results for project: 0 ERRORS, 4 WARNINGS\n\n-------------------\n\n\n\u003chr\u003e\n\u003c/details\u003e" }, { "LibraryName": "ArduinoCloudThing", @@ -432,7 +432,7 @@ "Version": "" } ], - "Log": "\u003ca href=\"https://arduino.github.io/arduino-lint/latest/\"\u003eArduino Lint\u003c/a\u003e has suggestions for possible improvements:\n\u003cdetails\u003e\u003csummary\u003eClick to expand Arduino Lint report\u003c/summary\u003e\n\u003chr\u003e\nLinting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing\nRule LP010 result: fail\nWARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters.\nRule LP013 result: fail\nWARNING: Library name ArduinoCloudThing is missing the \"Arduino_\" prefix. All new official library names must use this prefix.\nRule LP036 result: fail\nWARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed.\nRule LD004 result: fail\nWARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples\n\nFinished linting project. Results:\nWarning count: 4\nError count: 0\nRules passed: true\n\n-------------------\n\n\n\u003chr\u003e\n\u003c/details\u003e" + "Log": "\u003ca href=\"https://arduino.github.io/arduino-lint/latest/\"\u003eArduino Lint\u003c/a\u003e has suggestions for possible improvements:\n\u003cdetails\u003e\u003csummary\u003eClick to expand Arduino Lint report\u003c/summary\u003e\n\u003chr\u003e\nLinting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing\nWARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule \n LP010) \nWARNING: Library name ArduinoCloudThing is missing the \"Arduino_\" prefix. All new official library names must use this \n prefix. (Rule LP013) \nWARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy \n is not needed. (Rule LP036) \nWARNING: No example sketches found. Please provide examples. See: \n https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) \n\nLinter results for project: 0 ERRORS, 4 WARNINGS\n\n-------------------\n\n\n\u003chr\u003e\n\u003c/details\u003e" }, { "LibraryName": "ArduinoCloudThing", @@ -457,7 +457,7 @@ "Version": "" } ], - "Log": "\u003ca href=\"https://arduino.github.io/arduino-lint/latest/\"\u003eArduino Lint\u003c/a\u003e has suggestions for possible improvements:\n\u003cdetails\u003e\u003csummary\u003eClick to expand Arduino Lint report\u003c/summary\u003e\n\u003chr\u003e\nLinting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing\nRule LP010 result: fail\nWARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters.\nRule LP013 result: fail\nWARNING: Library name ArduinoCloudThing is missing the \"Arduino_\" prefix. All new official library names must use this prefix.\nRule LP036 result: fail\nWARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed.\nRule LD004 result: fail\nWARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples\n\nFinished linting project. Results:\nWarning count: 4\nError count: 0\nRules passed: true\n\n-------------------\n\n\n\u003chr\u003e\n\u003c/details\u003e" + "Log": "\u003ca href=\"https://arduino.github.io/arduino-lint/latest/\"\u003eArduino Lint\u003c/a\u003e has suggestions for possible improvements:\n\u003cdetails\u003e\u003csummary\u003eClick to expand Arduino Lint report\u003c/summary\u003e\n\u003chr\u003e\nLinting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing\nWARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule \n LP010) \nWARNING: Library name ArduinoCloudThing is missing the \"Arduino_\" prefix. All new official library names must use this \n prefix. (Rule LP013) \nWARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy \n is not needed. (Rule LP036) \nWARNING: No example sketches found. Please provide examples. See: \n https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) \n\nLinter results for project: 0 ERRORS, 4 WARNINGS\n\n-------------------\n\n\n\u003chr\u003e\n\u003c/details\u003e" }, { "LibraryName": "ArduinoCloudThing", @@ -482,7 +482,7 @@ "Version": "" } ], - "Log": "\u003ca href=\"https://arduino.github.io/arduino-lint/latest/\"\u003eArduino Lint\u003c/a\u003e has suggestions for possible improvements:\n\u003cdetails\u003e\u003csummary\u003eClick to expand Arduino Lint report\u003c/summary\u003e\n\u003chr\u003e\nLinting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing\nRule LP010 result: fail\nWARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters.\nRule LP013 result: fail\nWARNING: Library name ArduinoCloudThing is missing the \"Arduino_\" prefix. All new official library names must use this prefix.\nRule LP036 result: fail\nWARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed.\nRule LD004 result: fail\nWARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples\n\nFinished linting project. Results:\nWarning count: 4\nError count: 0\nRules passed: true\n\n-------------------\n\n\n\u003chr\u003e\n\u003c/details\u003e" + "Log": "\u003ca href=\"https://arduino.github.io/arduino-lint/latest/\"\u003eArduino Lint\u003c/a\u003e has suggestions for possible improvements:\n\u003cdetails\u003e\u003csummary\u003eClick to expand Arduino Lint report\u003c/summary\u003e\n\u003chr\u003e\nLinting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing\nWARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule \n LP010) \nWARNING: Library name ArduinoCloudThing is missing the \"Arduino_\" prefix. All new official library names must use this \n prefix. (Rule LP013) \nWARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy \n is not needed. (Rule LP036) \nWARNING: No example sketches found. Please provide examples. See: \n https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) \n\nLinter results for project: 0 ERRORS, 4 WARNINGS\n\n-------------------\n\n\n\u003chr\u003e\n\u003c/details\u003e" } ] } diff --git a/test/testdata/test_all/golden/logs/generate/github.com/arduino-libraries/ArduinoCloudThing/index.html b/test/testdata/test_all/golden/logs/generate/github.com/arduino-libraries/ArduinoCloudThing/index.html index 13889d5c..9f8597b8 100644 --- a/test/testdata/test_all/golden/logs/generate/github.com/arduino-libraries/ArduinoCloudThing/index.html +++ b/test/testdata/test_all/golden/logs/generate/github.com/arduino-libraries/ArduinoCloudThing/index.html @@ -5,285 +5,266 @@
Click to expand Arduino Lint report
Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD003 result: fail -WARNING: Sketch(es) found outside examples and extras folders: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/test/ArduinoCloudThing_test. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: Sketch(es) found outside examples and extras folders: + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList, + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/test/ArduinoCloudThing_test. See: + https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD003) -Finished linting project. Results: -Warning count: 4 -Error count: 0 -Rules passed: true +Linter results for project: 0 ERRORS, 4 WARNINGS ------------------- Linting sketch in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/examples/ReadAndWrite -Finished linting project. Results: -Warning count: 0 -Error count: 0 -Rules passed: true +Linter results for project: no errors or warnings ------------------- Linting sketch in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/examples/SimpleCloudButton -Finished linting project. Results: -Warning count: 0 -Error count: 0 -Rules passed: true +Linter results for project: no errors or warnings ------------------- Linting sketch in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/examples/SimpleCloudButtonExpandedNewAPI -Finished linting project. Results: -Warning count: 0 -Error count: 0 -Rules passed: true +Linter results for project: no errors or warnings ------------------- Linting sketch in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/examples/SimpleCloudButtonYun -Finished linting project. Results: -Warning count: 0 -Error count: 0 -Rules passed: true +Linter results for project: no errors or warnings ------------------- -Finished linting projects. Results: -Warning count: 4 -Error count: 0 -Rules passed: true +Linter results for projects: 0 ERRORS, 4 WARNINGS
-2021/05/23 19:16:00 Checking out tag: 1.2.0 -2021/05/23 19:16:00 Arduino Lint has suggestions for possible improvements: +2021/08/10 00:40:51 Checking out tag: 1.2.0 +2021/08/10 00:40:52 Arduino Lint found errors:
Click to expand Arduino Lint report
Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD003 result: fail -WARNING: Sketch(es) found outside examples and extras folders: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples +ERROR: Symlink(s) found at + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/test/external/catch/current. + Symlinks cause difficulties for Windows users. These block addition to the Arduino Library Manager index. (Rule LS005) +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: Sketch(es) found outside examples and extras folders: + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. + See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD003) -Finished linting project. Results: -Warning count: 4 -Error count: 0 -Rules passed: true +Linter results for project: 1 ERRORS, 4 WARNINGS ------------------- Linting sketch in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/examples/ReadAndWrite -Finished linting project. Results: -Warning count: 0 -Error count: 0 -Rules passed: true +Linter results for project: no errors or warnings ------------------- Linting sketch in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/examples/SimpleCloudButton -Finished linting project. Results: -Warning count: 0 -Error count: 0 -Rules passed: true +Linter results for project: no errors or warnings ------------------- Linting sketch in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/examples/SimpleCloudButtonExpandedNewAPI -Finished linting project. Results: -Warning count: 0 -Error count: 0 -Rules passed: true +Linter results for project: no errors or warnings ------------------- Linting sketch in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/examples/SimpleCloudButtonYun -Finished linting project. Results: -Warning count: 0 -Error count: 0 -Rules passed: true +Linter results for project: no errors or warnings ------------------- -Finished linting projects. Results: -Warning count: 4 -Error count: 0 -Rules passed: true +Linter results for projects: 1 ERRORS, 4 WARNINGS
-2021/05/23 19:16:00 Error syncing library: Error while zipping library: Symlink not allowed: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/test/external/catch/current -> v.2.5.0 +2021/05/23 19:16:00 Error syncing library: exit status 1 2021/05/23 19:16:00 Checking out tag: 1.2.1 -2021/05/23 19:16:01 Arduino Lint has suggestions for possible improvements: +2021/05/23 19:16:01 Arduino Lint found errors:
Click to expand Arduino Lint report
Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD003 result: fail -WARNING: Sketch(es) found outside examples and extras folders: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples -Rule LD004 result: fail -WARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples +ERROR: Symlink(s) found at + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/test/external/catch/current. + Symlinks cause difficulties for Windows users. These block addition to the Arduino Library Manager index. (Rule LS005) +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: Sketch(es) found outside examples and extras folders: + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. + See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD003) +WARNING: No example sketches found. Please provide examples. See: + https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) -Finished linting project. Results: -Warning count: 5 -Error count: 0 -Rules passed: true +Linter results for project: 1 ERRORS, 5 WARNINGS -------------------
-2021/05/23 19:16:01 Error syncing library: Error while zipping library: Symlink not allowed: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/test/external/catch/current -> v.2.5.0 +2021/05/23 19:16:01 Error syncing library: exit status 1 2021/05/23 19:16:01 Checking out tag: 1.2.2 -2021/05/23 19:16:02 Arduino Lint has suggestions for possible improvements: +2021/05/23 19:16:02 Arduino Lint found errors:
Click to expand Arduino Lint report
Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD003 result: fail -WARNING: Sketch(es) found outside examples and extras folders: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples -Rule LD004 result: fail -WARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples +ERROR: Symlink(s) found at + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/test/external/catch/current. + Symlinks cause difficulties for Windows users. These block addition to the Arduino Library Manager index. (Rule LS005) +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: Sketch(es) found outside examples and extras folders: + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. + See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD003) +WARNING: No example sketches found. Please provide examples. See: + https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) -Finished linting project. Results: -Warning count: 5 -Error count: 0 -Rules passed: true +Linter results for project: 1 ERRORS, 5 WARNINGS -------------------
-2021/05/23 19:16:02 Error syncing library: Error while zipping library: Symlink not allowed: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/test/external/catch/current -> v.2.5.0 +2021/05/23 19:16:02 Error syncing library: exit status 1 2021/05/23 19:16:02 Checking out tag: 1.2.3 -2021/05/23 19:16:02 Arduino Lint has suggestions for possible improvements: +2021/05/23 19:16:02 Arduino Lint found errors:
Click to expand Arduino Lint report
Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD003 result: fail -WARNING: Sketch(es) found outside examples and extras folders: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples -Rule LD004 result: fail -WARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples +ERROR: Symlink(s) found at + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/test/external/catch/current. + Symlinks cause difficulties for Windows users. These block addition to the Arduino Library Manager index. (Rule LS005) +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: Sketch(es) found outside examples and extras folders: + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. + See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD003) +WARNING: No example sketches found. Please provide examples. See: + https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) -Finished linting project. Results: -Warning count: 5 -Error count: 0 -Rules passed: true +Linter results for project: 1 ERRORS, 5 WARNINGS -------------------
-2021/05/23 19:16:02 Error syncing library: Error while zipping library: Symlink not allowed: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/test/external/catch/current -> v.2.5.0 +2021/05/23 19:16:02 Error syncing library: exit status 1 2021/05/23 19:16:02 Checking out tag: 1.2.4 -2021/05/23 19:16:03 Arduino Lint has suggestions for possible improvements: +2021/05/23 19:16:03 Arduino Lint found errors:
Click to expand Arduino Lint report
Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD003 result: fail -WARNING: Sketch(es) found outside examples and extras folders: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples -Rule LD004 result: fail -WARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples +ERROR: Symlink(s) found at + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/test/external/catch/current. + Symlinks cause difficulties for Windows users. These block addition to the Arduino Library Manager index. (Rule LS005) +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: Sketch(es) found outside examples and extras folders: + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. + See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD003) +WARNING: No example sketches found. Please provide examples. See: + https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) -Finished linting project. Results: -Warning count: 5 -Error count: 0 -Rules passed: true +Linter results for project: 1 ERRORS, 5 WARNINGS -------------------
-2021/05/23 19:16:03 Error syncing library: Error while zipping library: Symlink not allowed: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/test/external/catch/current -> v.2.5.0 +2021/05/23 19:16:03 Error syncing library: exit status 1 2021/05/23 19:16:03 Checking out tag: 1.3.0 -2021/05/23 19:16:04 Arduino Lint has suggestions for possible improvements: +2021/05/23 19:16:04 Arduino Lint found errors:
Click to expand Arduino Lint report
Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD003 result: fail -WARNING: Sketch(es) found outside examples and extras folders: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples -Rule LD004 result: fail -WARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples +ERROR: Symlink(s) found at + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/test/external/catch/current. + Symlinks cause difficulties for Windows users. These block addition to the Arduino Library Manager index. (Rule LS005) +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: Sketch(es) found outside examples and extras folders: + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. + See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD003) +WARNING: No example sketches found. Please provide examples. See: + https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) -Finished linting project. Results: -Warning count: 5 -Error count: 0 -Rules passed: true +Linter results for project: 1 ERRORS, 5 WARNINGS -------------------
-2021/05/23 19:16:04 Error syncing library: Error while zipping library: Symlink not allowed: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/test/external/catch/current -> v.2.5.0 +2021/05/23 19:16:04 Error syncing library: exit status 1 2021/05/23 19:16:04 Checking out tag: 1.3.1 2021/05/23 19:16:04 Arduino Lint has suggestions for possible improvements:
Click to expand Arduino Lint report
Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD003 result: fail -WARNING: Sketch(es) found outside examples and extras folders: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples -Rule LD004 result: fail -WARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: Sketch(es) found outside examples and extras folders: + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. + See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD003) +WARNING: No example sketches found. Please provide examples. See: + https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) -Finished linting project. Results: -Warning count: 5 -Error count: 0 -Rules passed: true +Linter results for project: 0 ERRORS, 5 WARNINGS ------------------- @@ -295,21 +276,20 @@
Click to expand Arduino Lint report
Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD003 result: fail -WARNING: Sketch(es) found outside examples and extras folders: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples -Rule LD004 result: fail -WARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: Sketch(es) found outside examples and extras folders: + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. + See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD003) +WARNING: No example sketches found. Please provide examples. See: + https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) -Finished linting project. Results: -Warning count: 5 -Error count: 0 -Rules passed: true +Linter results for project: 0 ERRORS, 5 WARNINGS ------------------- @@ -321,21 +301,20 @@
Click to expand Arduino Lint report
Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD003 result: fail -WARNING: Sketch(es) found outside examples and extras folders: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples -Rule LD004 result: fail -WARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: Sketch(es) found outside examples and extras folders: + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. + See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD003) +WARNING: No example sketches found. Please provide examples. See: + https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) -Finished linting project. Results: -Warning count: 5 -Error count: 0 -Rules passed: true +Linter results for project: 0 ERRORS, 5 WARNINGS ------------------- @@ -347,21 +326,20 @@
Click to expand Arduino Lint report
Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD003 result: fail -WARNING: Sketch(es) found outside examples and extras folders: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples -Rule LD004 result: fail -WARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: Sketch(es) found outside examples and extras folders: + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. + See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD003) +WARNING: No example sketches found. Please provide examples. See: + https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) -Finished linting project. Results: -Warning count: 5 -Error count: 0 -Rules passed: true +Linter results for project: 0 ERRORS, 5 WARNINGS ------------------- @@ -373,21 +351,20 @@
Click to expand Arduino Lint report
Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD003 result: fail -WARNING: Sketch(es) found outside examples and extras folders: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples -Rule LD004 result: fail -WARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: Sketch(es) found outside examples and extras folders: + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. + See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD003) +WARNING: No example sketches found. Please provide examples. See: + https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) -Finished linting project. Results: -Warning count: 5 -Error count: 0 -Rules passed: true +Linter results for project: 0 ERRORS, 5 WARNINGS ------------------- @@ -399,21 +376,20 @@
Click to expand Arduino Lint report
Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD003 result: fail -WARNING: Sketch(es) found outside examples and extras folders: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples -Rule LD004 result: fail -WARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: Sketch(es) found outside examples and extras folders: + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. + See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD003) +WARNING: No example sketches found. Please provide examples. See: + https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) -Finished linting project. Results: -Warning count: 5 -Error count: 0 -Rules passed: true +Linter results for project: 0 ERRORS, 5 WARNINGS ------------------- @@ -425,21 +401,20 @@
Click to expand Arduino Lint report
Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD003 result: fail -WARNING: Sketch(es) found outside examples and extras folders: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples -Rule LD004 result: fail -WARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: Sketch(es) found outside examples and extras folders: + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. + See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD003) +WARNING: No example sketches found. Please provide examples. See: + https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) -Finished linting project. Results: -Warning count: 5 -Error count: 0 -Rules passed: true +Linter results for project: 0 ERRORS, 5 WARNINGS ------------------- @@ -451,21 +426,20 @@
Click to expand Arduino Lint report
Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD003 result: fail -WARNING: Sketch(es) found outside examples and extras folders: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples -Rule LD004 result: fail -WARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: Sketch(es) found outside examples and extras folders: + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. + See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD003) +WARNING: No example sketches found. Please provide examples. See: + https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) -Finished linting project. Results: -Warning count: 5 -Error count: 0 -Rules passed: true +Linter results for project: 0 ERRORS, 5 WARNINGS ------------------- @@ -477,21 +451,20 @@
Click to expand Arduino Lint report
Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD003 result: fail -WARNING: Sketch(es) found outside examples and extras folders: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples -Rule LD004 result: fail -WARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: Sketch(es) found outside examples and extras folders: + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. + See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD003) +WARNING: No example sketches found. Please provide examples. See: + https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) -Finished linting project. Results: -Warning count: 5 -Error count: 0 -Rules passed: true +Linter results for project: 0 ERRORS, 5 WARNINGS ------------------- @@ -503,21 +476,20 @@
Click to expand Arduino Lint report
Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD003 result: fail -WARNING: Sketch(es) found outside examples and extras folders: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples -Rule LD004 result: fail -WARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: Sketch(es) found outside examples and extras folders: + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. + See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD003) +WARNING: No example sketches found. Please provide examples. See: + https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) -Finished linting project. Results: -Warning count: 5 -Error count: 0 -Rules passed: true +Linter results for project: 0 ERRORS, 5 WARNINGS ------------------- @@ -529,21 +501,20 @@
Click to expand Arduino Lint report
Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD003 result: fail -WARNING: Sketch(es) found outside examples and extras folders: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples -Rule LD004 result: fail -WARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: Sketch(es) found outside examples and extras folders: + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. + See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD003) +WARNING: No example sketches found. Please provide examples. See: + https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) -Finished linting project. Results: -Warning count: 5 -Error count: 0 -Rules passed: true +Linter results for project: 0 ERRORS, 5 WARNINGS ------------------- @@ -555,19 +526,16 @@
Click to expand Arduino Lint report
Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD004 result: fail -WARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: No example sketches found. Please provide examples. See: + https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) -Finished linting project. Results: -Warning count: 4 -Error count: 0 -Rules passed: true +Linter results for project: 0 ERRORS, 4 WARNINGS ------------------- @@ -579,19 +547,16 @@
Click to expand Arduino Lint report
Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD004 result: fail -WARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: No example sketches found. Please provide examples. See: + https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) -Finished linting project. Results: -Warning count: 4 -Error count: 0 -Rules passed: true +Linter results for project: 0 ERRORS, 4 WARNINGS ------------------- @@ -603,19 +568,16 @@
Click to expand Arduino Lint report
Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD004 result: fail -WARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: No example sketches found. Please provide examples. See: + https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) -Finished linting project. Results: -Warning count: 4 -Error count: 0 -Rules passed: true +Linter results for project: 0 ERRORS, 4 WARNINGS ------------------- @@ -627,19 +589,16 @@
Click to expand Arduino Lint report
Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD004 result: fail -WARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: No example sketches found. Please provide examples. See: + https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) -Finished linting project. Results: -Warning count: 4 -Error count: 0 -Rules passed: true +Linter results for project: 0 ERRORS, 4 WARNINGS ------------------- @@ -651,19 +610,16 @@
Click to expand Arduino Lint report
Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD004 result: fail -WARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: No example sketches found. Please provide examples. See: + https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) -Finished linting project. Results: -Warning count: 4 -Error count: 0 -Rules passed: true +Linter results for project: 0 ERRORS, 4 WARNINGS ------------------- @@ -675,19 +631,16 @@
Click to expand Arduino Lint report
Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD004 result: fail -WARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: No example sketches found. Please provide examples. See: + https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) -Finished linting project. Results: -Warning count: 4 -Error count: 0 -Rules passed: true +Linter results for project: 0 ERRORS, 4 WARNINGS ------------------- @@ -699,19 +652,16 @@
Click to expand Arduino Lint report
Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD004 result: fail -WARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples - -Finished linting project. Results: -Warning count: 4 -Error count: 0 -Rules passed: true +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: No example sketches found. Please provide examples. See: + https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) + +Linter results for project: 0 ERRORS, 4 WARNINGS ------------------- diff --git a/test/testdata/test_all/golden/logs/generate/github.com/arduino-libraries/SpacebrewYun/index.html b/test/testdata/test_all/golden/logs/generate/github.com/arduino-libraries/SpacebrewYun/index.html index 4e8c0682..4cc26470 100644 --- a/test/testdata/test_all/golden/logs/generate/github.com/arduino-libraries/SpacebrewYun/index.html +++ b/test/testdata/test_all/golden/logs/generate/github.com/arduino-libraries/SpacebrewYun/index.html @@ -5,15 +5,13 @@
Click to expand Arduino Lint report
Linting library in ${git_clones_folder}/github.com/arduino-libraries/SpacebrewYun -Rule LD002 result: fail -WARNING: No license file found. See: https://docs.github.com/en/free-pro-team@latest/github/creating-cloning-and-archiving-repositories/licensing-a-repository#detecting-a-license -Rule LD004 result: fail -WARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples +WARNING: No license file found. See: + https://docs.github.com/en/free-pro-team@latest/github/creating-cloning-and-archiving-repositories/licensing-a-repository#detecting-a-license + (Rule LD002) +WARNING: No example sketches found. Please provide examples. See: + https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) -Finished linting project. Results: -Warning count: 2 -Error count: 0 -Rules passed: true +Linter results for project: 0 ERRORS, 2 WARNINGS ------------------- @@ -25,56 +23,39 @@
Click to expand Arduino Lint report
Linting library in ${git_clones_folder}/github.com/arduino-libraries/SpacebrewYun -Rule LD002 result: fail -WARNING: No license file found. See: https://docs.github.com/en/free-pro-team@latest/github/creating-cloning-and-archiving-repositories/licensing-a-repository#detecting-a-license +WARNING: No license file found. See: + https://docs.github.com/en/free-pro-team@latest/github/creating-cloning-and-archiving-repositories/licensing-a-repository#detecting-a-license + (Rule LD002) -Finished linting project. Results: -Warning count: 1 -Error count: 0 -Rules passed: true +Linter results for project: 0 ERRORS, 1 WARNINGS ------------------- Linting sketch in ${git_clones_folder}/github.com/arduino-libraries/SpacebrewYun/examples/inputOutput -Finished linting project. Results: -Warning count: 0 -Error count: 0 -Rules passed: true +Linter results for project: no errors or warnings ------------------- Linting sketch in ${git_clones_folder}/github.com/arduino-libraries/SpacebrewYun/examples/spacebrewBoolean -Finished linting project. Results: -Warning count: 0 -Error count: 0 -Rules passed: true +Linter results for project: no errors or warnings ------------------- Linting sketch in ${git_clones_folder}/github.com/arduino-libraries/SpacebrewYun/examples/spacebrewRange -Finished linting project. Results: -Warning count: 0 -Error count: 0 -Rules passed: true +Linter results for project: no errors or warnings ------------------- Linting sketch in ${git_clones_folder}/github.com/arduino-libraries/SpacebrewYun/examples/spacebrewString -Finished linting project. Results: -Warning count: 0 -Error count: 0 -Rules passed: true +Linter results for project: no errors or warnings ------------------- -Finished linting projects. Results: -Warning count: 1 -Error count: 0 -Rules passed: true +Linter results for projects: 0 ERRORS, 1 WARNINGS
@@ -83,56 +64,39 @@
Click to expand Arduino Lint report
Linting library in ${git_clones_folder}/github.com/arduino-libraries/SpacebrewYun -Rule LD002 result: fail -WARNING: No license file found. See: https://docs.github.com/en/free-pro-team@latest/github/creating-cloning-and-archiving-repositories/licensing-a-repository#detecting-a-license +WARNING: No license file found. See: + https://docs.github.com/en/free-pro-team@latest/github/creating-cloning-and-archiving-repositories/licensing-a-repository#detecting-a-license + (Rule LD002) -Finished linting project. Results: -Warning count: 1 -Error count: 0 -Rules passed: true +Linter results for project: 0 ERRORS, 1 WARNINGS ------------------- Linting sketch in ${git_clones_folder}/github.com/arduino-libraries/SpacebrewYun/examples/inputOutput -Finished linting project. Results: -Warning count: 0 -Error count: 0 -Rules passed: true +Linter results for project: no errors or warnings ------------------- Linting sketch in ${git_clones_folder}/github.com/arduino-libraries/SpacebrewYun/examples/spacebrewBoolean -Finished linting project. Results: -Warning count: 0 -Error count: 0 -Rules passed: true +Linter results for project: no errors or warnings ------------------- Linting sketch in ${git_clones_folder}/github.com/arduino-libraries/SpacebrewYun/examples/spacebrewRange -Finished linting project. Results: -Warning count: 0 -Error count: 0 -Rules passed: true +Linter results for project: no errors or warnings ------------------- Linting sketch in ${git_clones_folder}/github.com/arduino-libraries/SpacebrewYun/examples/spacebrewString -Finished linting project. Results: -Warning count: 0 -Error count: 0 -Rules passed: true +Linter results for project: no errors or warnings ------------------- -Finished linting projects. Results: -Warning count: 1 -Error count: 0 -Rules passed: true +Linter results for projects: 0 ERRORS, 1 WARNINGS
diff --git a/test/testdata/test_all/golden/logs/update/github.com/arduino-libraries/ArduinoCloudThing/index.html b/test/testdata/test_all/golden/logs/update/github.com/arduino-libraries/ArduinoCloudThing/index.html index d5effd34..27ecde7f 100644 --- a/test/testdata/test_all/golden/logs/update/github.com/arduino-libraries/ArduinoCloudThing/index.html +++ b/test/testdata/test_all/golden/logs/update/github.com/arduino-libraries/ArduinoCloudThing/index.html @@ -6,286 +6,267 @@
Click to expand Arduino Lint report
Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD003 result: fail -WARNING: Sketch(es) found outside examples and extras folders: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/test/ArduinoCloudThing_test. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: Sketch(es) found outside examples and extras folders: + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList, + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/test/ArduinoCloudThing_test. See: + https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD003) -Finished linting project. Results: -Warning count: 4 -Error count: 0 -Rules passed: true +Linter results for project: 0 ERRORS, 4 WARNINGS ------------------- Linting sketch in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/examples/ReadAndWrite -Finished linting project. Results: -Warning count: 0 -Error count: 0 -Rules passed: true +Linter results for project: no errors or warnings ------------------- Linting sketch in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/examples/SimpleCloudButton -Finished linting project. Results: -Warning count: 0 -Error count: 0 -Rules passed: true +Linter results for project: no errors or warnings ------------------- Linting sketch in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/examples/SimpleCloudButtonExpandedNewAPI -Finished linting project. Results: -Warning count: 0 -Error count: 0 -Rules passed: true +Linter results for project: no errors or warnings ------------------- Linting sketch in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/examples/SimpleCloudButtonYun -Finished linting project. Results: -Warning count: 0 -Error count: 0 -Rules passed: true +Linter results for project: no errors or warnings ------------------- -Finished linting projects. Results: -Warning count: 4 -Error count: 0 -Rules passed: true +Linter results for projects: 0 ERRORS, 4 WARNINGS
2021/05/23 23:27:48 Checking out tag: 1.2.0 -2021/05/23 23:27:49 Arduino Lint has suggestions for possible improvements: +2021/05/23 23:27:49 Arduino Lint found errors:
Click to expand Arduino Lint report
Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD003 result: fail -WARNING: Sketch(es) found outside examples and extras folders: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples +ERROR: Symlink(s) found at + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/test/external/catch/current. + Symlinks cause difficulties for Windows users. These block addition to the Arduino Library Manager index. (Rule LS005) +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: Sketch(es) found outside examples and extras folders: + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. + See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD003) -Finished linting project. Results: -Warning count: 4 -Error count: 0 -Rules passed: true +Linter results for project: 1 ERRORS, 4 WARNINGS ------------------- Linting sketch in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/examples/ReadAndWrite -Finished linting project. Results: -Warning count: 0 -Error count: 0 -Rules passed: true +Linter results for project: no errors or warnings ------------------- Linting sketch in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/examples/SimpleCloudButton -Finished linting project. Results: -Warning count: 0 -Error count: 0 -Rules passed: true +Linter results for project: no errors or warnings ------------------- Linting sketch in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/examples/SimpleCloudButtonExpandedNewAPI -Finished linting project. Results: -Warning count: 0 -Error count: 0 -Rules passed: true +Linter results for project: no errors or warnings ------------------- Linting sketch in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/examples/SimpleCloudButtonYun -Finished linting project. Results: -Warning count: 0 -Error count: 0 -Rules passed: true +Linter results for project: no errors or warnings ------------------- -Finished linting projects. Results: -Warning count: 4 -Error count: 0 -Rules passed: true +Linter results for projects: 1 ERRORS, 4 WARNINGS
-2021/05/23 23:27:49 Error syncing library: Error while zipping library: Symlink not allowed: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/test/external/catch/current -> v.2.5.0 +2021/05/23 23:27:49 Error syncing library: exit status 1 2021/05/23 23:27:49 Checking out tag: 1.2.1 -2021/05/23 23:27:49 Arduino Lint has suggestions for possible improvements: +2021/05/23 23:27:49 Arduino Lint found errors:
Click to expand Arduino Lint report
Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD003 result: fail -WARNING: Sketch(es) found outside examples and extras folders: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples -Rule LD004 result: fail -WARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples +ERROR: Symlink(s) found at + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/test/external/catch/current. + Symlinks cause difficulties for Windows users. These block addition to the Arduino Library Manager index. (Rule LS005) +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: Sketch(es) found outside examples and extras folders: + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. + See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD003) +WARNING: No example sketches found. Please provide examples. See: + https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) -Finished linting project. Results: -Warning count: 5 -Error count: 0 -Rules passed: true +Linter results for project: 1 ERRORS, 5 WARNINGS -------------------
-2021/05/23 23:27:49 Error syncing library: Error while zipping library: Symlink not allowed: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/test/external/catch/current -> v.2.5.0 +2021/05/23 23:27:49 Error syncing library: exit status 1 2021/05/23 23:27:49 Checking out tag: 1.2.2 -2021/05/23 23:27:50 Arduino Lint has suggestions for possible improvements: +2021/05/23 23:27:50 Arduino Lint found errors:
Click to expand Arduino Lint report
Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD003 result: fail -WARNING: Sketch(es) found outside examples and extras folders: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples -Rule LD004 result: fail -WARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples +ERROR: Symlink(s) found at + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/test/external/catch/current. + Symlinks cause difficulties for Windows users. These block addition to the Arduino Library Manager index. (Rule LS005) +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: Sketch(es) found outside examples and extras folders: + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. + See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD003) +WARNING: No example sketches found. Please provide examples. See: + https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) -Finished linting project. Results: -Warning count: 5 -Error count: 0 -Rules passed: true +Linter results for project: 1 ERRORS, 5 WARNINGS -------------------
-2021/05/23 23:27:50 Error syncing library: Error while zipping library: Symlink not allowed: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/test/external/catch/current -> v.2.5.0 +2021/05/23 23:27:50 Error syncing library: exit status 1 2021/05/23 23:27:50 Checking out tag: 1.2.3 -2021/05/23 23:27:50 Arduino Lint has suggestions for possible improvements: +2021/05/23 23:27:50 Arduino Lint found errors:
Click to expand Arduino Lint report
Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD003 result: fail -WARNING: Sketch(es) found outside examples and extras folders: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples -Rule LD004 result: fail -WARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples +ERROR: Symlink(s) found at + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/test/external/catch/current. + Symlinks cause difficulties for Windows users. These block addition to the Arduino Library Manager index. (Rule LS005) +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: Sketch(es) found outside examples and extras folders: + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. + See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD003) +WARNING: No example sketches found. Please provide examples. See: + https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) -Finished linting project. Results: -Warning count: 5 -Error count: 0 -Rules passed: true +Linter results for project: 1 ERRORS, 5 WARNINGS -------------------
-2021/05/23 23:27:50 Error syncing library: Error while zipping library: Symlink not allowed: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/test/external/catch/current -> v.2.5.0 +2021/05/23 23:27:50 Error syncing library: exit status 1 2021/05/23 23:27:50 Checking out tag: 1.2.4 -2021/05/23 23:27:51 Arduino Lint has suggestions for possible improvements: +2021/05/23 23:27:51 Arduino Lint found errors:
Click to expand Arduino Lint report
Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD003 result: fail -WARNING: Sketch(es) found outside examples and extras folders: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples -Rule LD004 result: fail -WARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples +ERROR: Symlink(s) found at + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/test/external/catch/current. + Symlinks cause difficulties for Windows users. These block addition to the Arduino Library Manager index. (Rule LS005) +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: Sketch(es) found outside examples and extras folders: + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. + See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD003) +WARNING: No example sketches found. Please provide examples. See: + https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) -Finished linting project. Results: -Warning count: 5 -Error count: 0 -Rules passed: true +Linter results for project: 1 ERRORS, 5 WARNINGS -------------------
-2021/05/23 23:27:51 Error syncing library: Error while zipping library: Symlink not allowed: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/test/external/catch/current -> v.2.5.0 +2021/05/23 23:27:51 Error syncing library: exit status 1 2021/05/23 23:27:51 Checking out tag: 1.3.0 -2021/05/23 23:27:51 Arduino Lint has suggestions for possible improvements: +2021/05/23 23:27:51 Arduino Lint found errors:
Click to expand Arduino Lint report
Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD003 result: fail -WARNING: Sketch(es) found outside examples and extras folders: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples -Rule LD004 result: fail -WARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples +ERROR: Symlink(s) found at + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/test/external/catch/current. + Symlinks cause difficulties for Windows users. These block addition to the Arduino Library Manager index. (Rule LS005) +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: Sketch(es) found outside examples and extras folders: + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. + See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD003) +WARNING: No example sketches found. Please provide examples. See: + https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) -Finished linting project. Results: -Warning count: 5 -Error count: 0 -Rules passed: true +Linter results for project: 1 ERRORS, 5 WARNINGS -------------------
-2021/05/23 23:27:51 Error syncing library: Error while zipping library: Symlink not allowed: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/test/external/catch/current -> v.2.5.0 +2021/05/23 23:27:51 Error syncing library: exit status 1 2021/05/23 23:27:51 Checking out tag: 1.3.1 2021/05/23 23:27:52 Release ArduinoCloudThing:1.3.1 already loaded, skipping 2021/05/23 23:27:52 Arduino Lint has suggestions for possible improvements:
Click to expand Arduino Lint report
Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD003 result: fail -WARNING: Sketch(es) found outside examples and extras folders: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples -Rule LD004 result: fail -WARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: Sketch(es) found outside examples and extras folders: + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. + See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD003) +WARNING: No example sketches found. Please provide examples. See: + https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) -Finished linting project. Results: -Warning count: 5 -Error count: 0 -Rules passed: true +Linter results for project: 0 ERRORS, 5 WARNINGS ------------------- @@ -298,21 +279,20 @@
Click to expand Arduino Lint report
Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD003 result: fail -WARNING: Sketch(es) found outside examples and extras folders: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples -Rule LD004 result: fail -WARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: Sketch(es) found outside examples and extras folders: + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. + See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD003) +WARNING: No example sketches found. Please provide examples. See: + https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) -Finished linting project. Results: -Warning count: 5 -Error count: 0 -Rules passed: true +Linter results for project: 0 ERRORS, 5 WARNINGS ------------------- @@ -325,21 +305,20 @@
Click to expand Arduino Lint report
Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD003 result: fail -WARNING: Sketch(es) found outside examples and extras folders: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples -Rule LD004 result: fail -WARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: Sketch(es) found outside examples and extras folders: + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. + See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD003) +WARNING: No example sketches found. Please provide examples. See: + https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) -Finished linting project. Results: -Warning count: 5 -Error count: 0 -Rules passed: true +Linter results for project: 0 ERRORS, 5 WARNINGS ------------------- @@ -352,21 +331,20 @@
Click to expand Arduino Lint report
Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD003 result: fail -WARNING: Sketch(es) found outside examples and extras folders: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples -Rule LD004 result: fail -WARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: Sketch(es) found outside examples and extras folders: + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. + See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD003) +WARNING: No example sketches found. Please provide examples. See: + https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) -Finished linting project. Results: -Warning count: 5 -Error count: 0 -Rules passed: true +Linter results for project: 0 ERRORS, 5 WARNINGS ------------------- @@ -379,21 +357,20 @@
Click to expand Arduino Lint report
Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD003 result: fail -WARNING: Sketch(es) found outside examples and extras folders: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples -Rule LD004 result: fail -WARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: Sketch(es) found outside examples and extras folders: + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. + See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD003) +WARNING: No example sketches found. Please provide examples. See: + https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) -Finished linting project. Results: -Warning count: 5 -Error count: 0 -Rules passed: true +Linter results for project: 0 ERRORS, 5 WARNINGS ------------------- @@ -406,21 +383,20 @@
Click to expand Arduino Lint report
Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD003 result: fail -WARNING: Sketch(es) found outside examples and extras folders: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples -Rule LD004 result: fail -WARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: Sketch(es) found outside examples and extras folders: + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. + See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD003) +WARNING: No example sketches found. Please provide examples. See: + https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) -Finished linting project. Results: -Warning count: 5 -Error count: 0 -Rules passed: true +Linter results for project: 0 ERRORS, 5 WARNINGS ------------------- @@ -433,21 +409,20 @@
Click to expand Arduino Lint report
Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD003 result: fail -WARNING: Sketch(es) found outside examples and extras folders: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples -Rule LD004 result: fail -WARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: Sketch(es) found outside examples and extras folders: + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. + See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD003) +WARNING: No example sketches found. Please provide examples. See: + https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) -Finished linting project. Results: -Warning count: 5 -Error count: 0 -Rules passed: true +Linter results for project: 0 ERRORS, 5 WARNINGS ------------------- @@ -460,21 +435,20 @@
Click to expand Arduino Lint report
Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD003 result: fail -WARNING: Sketch(es) found outside examples and extras folders: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples -Rule LD004 result: fail -WARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: Sketch(es) found outside examples and extras folders: + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. + See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD003) +WARNING: No example sketches found. Please provide examples. See: + https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) -Finished linting project. Results: -Warning count: 5 -Error count: 0 -Rules passed: true +Linter results for project: 0 ERRORS, 5 WARNINGS ------------------- @@ -487,21 +461,20 @@
Click to expand Arduino Lint report
Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD003 result: fail -WARNING: Sketch(es) found outside examples and extras folders: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples -Rule LD004 result: fail -WARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: Sketch(es) found outside examples and extras folders: + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. + See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD003) +WARNING: No example sketches found. Please provide examples. See: + https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) -Finished linting project. Results: -Warning count: 5 -Error count: 0 -Rules passed: true +Linter results for project: 0 ERRORS, 5 WARNINGS ------------------- @@ -514,21 +487,20 @@
Click to expand Arduino Lint report
Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD003 result: fail -WARNING: Sketch(es) found outside examples and extras folders: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples -Rule LD004 result: fail -WARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: Sketch(es) found outside examples and extras folders: + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. + See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD003) +WARNING: No example sketches found. Please provide examples. See: + https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) -Finished linting project. Results: -Warning count: 5 -Error count: 0 -Rules passed: true +Linter results for project: 0 ERRORS, 5 WARNINGS ------------------- @@ -541,21 +513,20 @@
Click to expand Arduino Lint report
Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD003 result: fail -WARNING: Sketch(es) found outside examples and extras folders: ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples -Rule LD004 result: fail -WARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: Sketch(es) found outside examples and extras folders: + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/ClassList, + ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing/src/lib/LinkedList/examples/SimpleIntegerList. + See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD003) +WARNING: No example sketches found. Please provide examples. See: + https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) -Finished linting project. Results: -Warning count: 5 -Error count: 0 -Rules passed: true +Linter results for project: 0 ERRORS, 5 WARNINGS ------------------- @@ -568,19 +539,16 @@
Click to expand Arduino Lint report
Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD004 result: fail -WARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: No example sketches found. Please provide examples. See: + https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) -Finished linting project. Results: -Warning count: 4 -Error count: 0 -Rules passed: true +Linter results for project: 0 ERRORS, 4 WARNINGS ------------------- @@ -593,19 +561,16 @@
Click to expand Arduino Lint report
Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD004 result: fail -WARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: No example sketches found. Please provide examples. See: + https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) -Finished linting project. Results: -Warning count: 4 -Error count: 0 -Rules passed: true +Linter results for project: 0 ERRORS, 4 WARNINGS ------------------- @@ -618,19 +583,16 @@
Click to expand Arduino Lint report
Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD004 result: fail -WARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: No example sketches found. Please provide examples. See: + https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) -Finished linting project. Results: -Warning count: 4 -Error count: 0 -Rules passed: true +Linter results for project: 0 ERRORS, 4 WARNINGS ------------------- @@ -643,19 +605,16 @@
Click to expand Arduino Lint report
Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD004 result: fail -WARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: No example sketches found. Please provide examples. See: + https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) -Finished linting project. Results: -Warning count: 4 -Error count: 0 -Rules passed: true +Linter results for project: 0 ERRORS, 4 WARNINGS ------------------- @@ -668,19 +627,16 @@
Click to expand Arduino Lint report
Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD004 result: fail -WARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: No example sketches found. Please provide examples. See: + https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) -Finished linting project. Results: -Warning count: 4 -Error count: 0 -Rules passed: true +Linter results for project: 0 ERRORS, 4 WARNINGS ------------------- @@ -693,19 +649,16 @@
Click to expand Arduino Lint report
Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD004 result: fail -WARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: No example sketches found. Please provide examples. See: + https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) -Finished linting project. Results: -Warning count: 4 -Error count: 0 -Rules passed: true +Linter results for project: 0 ERRORS, 4 WARNINGS ------------------- @@ -718,19 +671,16 @@
Click to expand Arduino Lint report
Linting library in ${git_clones_folder}/github.com/arduino-libraries/ArduinoCloudThing -Rule LP010 result: fail -WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. -Rule LP013 result: fail -WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this prefix. -Rule LP036 result: fail -WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy is not needed. -Rule LD004 result: fail -WARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples - -Finished linting project. Results: -Warning count: 4 -Error count: 0 -Rules passed: true +WARNING: library.properties name value ArduinoCloudThing is longer than the recommended length of 16 characters. (Rule + LP010) +WARNING: Library name ArduinoCloudThing is missing the "Arduino_" prefix. All new official library names must use this + prefix. (Rule LP013) +WARNING: The library.properties paragraph field repeats the sentence field. These are displayed together so redundancy + is not needed. (Rule LP036) +WARNING: No example sketches found. Please provide examples. See: + https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) + +Linter results for project: 0 ERRORS, 4 WARNINGS ------------------- diff --git a/test/testdata/test_all/golden/logs/update/github.com/arduino-libraries/SpacebrewYun/index.html b/test/testdata/test_all/golden/logs/update/github.com/arduino-libraries/SpacebrewYun/index.html index 79bd1fac..6ccd3f5d 100644 --- a/test/testdata/test_all/golden/logs/update/github.com/arduino-libraries/SpacebrewYun/index.html +++ b/test/testdata/test_all/golden/logs/update/github.com/arduino-libraries/SpacebrewYun/index.html @@ -6,15 +6,13 @@
Click to expand Arduino Lint report
Linting library in ${git_clones_folder}/github.com/arduino-libraries/SpacebrewYun -Rule LD002 result: fail -WARNING: No license file found. See: https://docs.github.com/en/free-pro-team@latest/github/creating-cloning-and-archiving-repositories/licensing-a-repository#detecting-a-license -Rule LD004 result: fail -WARNING: No example sketches found. Please provide examples. See: https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples +WARNING: No license file found. See: + https://docs.github.com/en/free-pro-team@latest/github/creating-cloning-and-archiving-repositories/licensing-a-repository#detecting-a-license + (Rule LD002) +WARNING: No example sketches found. Please provide examples. See: + https://arduino.github.io/arduino-cli/latest/library-specification/#library-examples (Rule LD004) -Finished linting project. Results: -Warning count: 2 -Error count: 0 -Rules passed: true +Linter results for project: 0 ERRORS, 2 WARNINGS ------------------- @@ -27,56 +25,39 @@
Click to expand Arduino Lint report
Linting library in ${git_clones_folder}/github.com/arduino-libraries/SpacebrewYun -Rule LD002 result: fail -WARNING: No license file found. See: https://docs.github.com/en/free-pro-team@latest/github/creating-cloning-and-archiving-repositories/licensing-a-repository#detecting-a-license +WARNING: No license file found. See: + https://docs.github.com/en/free-pro-team@latest/github/creating-cloning-and-archiving-repositories/licensing-a-repository#detecting-a-license + (Rule LD002) -Finished linting project. Results: -Warning count: 1 -Error count: 0 -Rules passed: true +Linter results for project: 0 ERRORS, 1 WARNINGS ------------------- Linting sketch in ${git_clones_folder}/github.com/arduino-libraries/SpacebrewYun/examples/inputOutput -Finished linting project. Results: -Warning count: 0 -Error count: 0 -Rules passed: true +Linter results for project: no errors or warnings ------------------- Linting sketch in ${git_clones_folder}/github.com/arduino-libraries/SpacebrewYun/examples/spacebrewBoolean -Finished linting project. Results: -Warning count: 0 -Error count: 0 -Rules passed: true +Linter results for project: no errors or warnings ------------------- Linting sketch in ${git_clones_folder}/github.com/arduino-libraries/SpacebrewYun/examples/spacebrewRange -Finished linting project. Results: -Warning count: 0 -Error count: 0 -Rules passed: true +Linter results for project: no errors or warnings ------------------- Linting sketch in ${git_clones_folder}/github.com/arduino-libraries/SpacebrewYun/examples/spacebrewString -Finished linting project. Results: -Warning count: 0 -Error count: 0 -Rules passed: true +Linter results for project: no errors or warnings ------------------- -Finished linting projects. Results: -Warning count: 1 -Error count: 0 -Rules passed: true +Linter results for projects: 0 ERRORS, 1 WARNINGS
@@ -86,56 +67,39 @@
Click to expand Arduino Lint report
Linting library in ${git_clones_folder}/github.com/arduino-libraries/SpacebrewYun -Rule LD002 result: fail -WARNING: No license file found. See: https://docs.github.com/en/free-pro-team@latest/github/creating-cloning-and-archiving-repositories/licensing-a-repository#detecting-a-license +WARNING: No license file found. See: + https://docs.github.com/en/free-pro-team@latest/github/creating-cloning-and-archiving-repositories/licensing-a-repository#detecting-a-license + (Rule LD002) -Finished linting project. Results: -Warning count: 1 -Error count: 0 -Rules passed: true +Linter results for project: 0 ERRORS, 1 WARNINGS ------------------- Linting sketch in ${git_clones_folder}/github.com/arduino-libraries/SpacebrewYun/examples/inputOutput -Finished linting project. Results: -Warning count: 0 -Error count: 0 -Rules passed: true +Linter results for project: no errors or warnings ------------------- Linting sketch in ${git_clones_folder}/github.com/arduino-libraries/SpacebrewYun/examples/spacebrewBoolean -Finished linting project. Results: -Warning count: 0 -Error count: 0 -Rules passed: true +Linter results for project: no errors or warnings ------------------- Linting sketch in ${git_clones_folder}/github.com/arduino-libraries/SpacebrewYun/examples/spacebrewRange -Finished linting project. Results: -Warning count: 0 -Error count: 0 -Rules passed: true +Linter results for project: no errors or warnings ------------------- Linting sketch in ${git_clones_folder}/github.com/arduino-libraries/SpacebrewYun/examples/spacebrewString -Finished linting project. Results: -Warning count: 0 -Error count: 0 -Rules passed: true +Linter results for project: no errors or warnings ------------------- -Finished linting projects. Results: -Warning count: 1 -Error count: 0 -Rules passed: true +Linter results for projects: 0 ERRORS, 1 WARNINGS