Skip to content

Commit a438a59

Browse files
authored
Merge pull request #183 from ianfixes/2020-10-16_suggestions
Suggested fixes
2 parents 972ad28 + b4ee115 commit a438a59

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

86 files changed

+1267
-190
lines changed

.rubocop.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,12 @@ Layout/ExtraSpacing:
3131
Layout/EndOfLine:
3232
EnforcedStyle: lf
3333

34+
Layout/EndAlignment:
35+
EnforcedStyleAlignWith: start_of_line
36+
37+
Layout/CaseIndentation:
38+
EnforcedStyle: end
39+
3440
Metrics/LineLength:
3541
Description: Limit lines to 80 characters.
3642
StyleGuide: https://github.com/bbatsov/ruby-style-guide#80-character-limits

.travis.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,3 +27,9 @@ script:
2727
- cd SampleProjects/TestSomething
2828
- bundle install
2929
- bundle exec arduino_ci.rb
30+
- cd ../NetworkLib
31+
- cd scripts
32+
- bash -x ./install.sh
33+
- cd ..
34+
- bundle install
35+
- bundle exec arduino_ci.rb

CHANGELOG.md

Lines changed: 19 additions & 4 deletions

REFERENCE.md

Lines changed: 46 additions & 4 deletions
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
depends=OnePointOhDummy,OnePointFiveDummy

SampleProjects/DependOnSomething/src/YesDeps.cpp

Whitespace-only changes.

SampleProjects/DependOnSomething/src/YesDeps.h

Whitespace-only changes.
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#include <ArduinoUnitTests.h>
2+
3+
unittest(nothing)
4+
{
5+
}
6+
7+
unittest_main()
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
unittest:
2+
exclude_dirs:
3+
- src/excludeThis
Lines changed: 3 additions & 0 deletions

0 commit comments

Comments
 (0)