This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Running RuboCop... | |
| For /Users/j15e/repos/project: configuration from /Users/j15e/repos/project/.rubocop.yml | |
| Inspecting 173 files | |
| Scanning /Users/j15e/repos/project/Guardfile/... | |
| .Scanning /Users/j15e/repos/project/Rakefile/... | |
| .Scanning /Users/j15e/repos/project/app/... | |
| .Scanning /Users/j15e/repos/project/app/... | |
| .Scanning /Users/j15e/repos/project/app/... | |
| .Scanning /Users/j15e/repos/project/app/... | |
| .Scanning /Users/j15e/repos/project/app/... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include "StandStats.h" | |
| #include <Adafruit_GFX.h> | |
| #include "Adafruit_LEDBackpack.h" | |
| #include <Time.h> | |
| #include <TimeLib.h> | |
| #include <Preferences.h> | |
| #include <driver/adc.h> | |
| #include <Wire.h> | |
| #include "WiFi.h" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const int GAUCHE = 11; | |
| const int BARRE = 10; | |
| const int DROITE = 9; | |
| const int BOUTON = A0; | |
| int val; | |
| int oldVal; | |
| int counter = 5; | |
| int delay1 = 1250; | |
| int lastToggle = 0; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Add to ~/Library/Application Support/Sublime Text 3/Packages/User/ | |
| import sublime | |
| import sublime_plugin | |
| class RubyFileSaveListener(sublime_plugin.EventListener): | |
| def on_pre_save(self, view): | |
| file_name = view.file_name() | |
| if file_name.endswith('schema.rb'): | |
| return |
OlderNewer