Ensure single newline at EOF for core files (#11310)

This commit is contained in:
Ryan
2020-12-28 04:36:32 +11:00
committed by Drashna Jael're
parent 60fd4d61ef
commit 4dd03061b4
25 changed files with 33 additions and 45 deletions

View File

@@ -66,4 +66,3 @@ include $(TMK_PATH)/rules.mk
$(shell mkdir -p $(BUILD_DIR)/test 2>/dev/null) $(shell mkdir -p $(BUILD_DIR)/test 2>/dev/null)
$(shell mkdir -p $(TEST_OBJ) 2>/dev/null) $(shell mkdir -p $(TEST_OBJ) 2>/dev/null)

View File

@@ -336,4 +336,3 @@ split_penalty_logical_operator=300
# Use the Tab character for indentation. # Use the Tab character for indentation.
use_tabs=False use_tabs=False

View File

@@ -14,10 +14,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#ifndef TESTS_BASIC_CONFIG_H_ #pragma once
#define TESTS_BASIC_CONFIG_H_
#define MATRIX_ROWS 4 #define MATRIX_ROWS 4
#define MATRIX_COLS 10 #define MATRIX_COLS 10
#endif /* TESTS_BASIC_CONFIG_H_ */

View File

@@ -14,8 +14,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#ifndef TESTS_TEST_COMMON_TEST_DRIVER_H_ #pragma once
#define TESTS_TEST_COMMON_TEST_DRIVER_H_
#include "gmock/gmock.h" #include "gmock/gmock.h"
#include <stdint.h> #include <stdint.h>
@@ -43,6 +42,3 @@ private:
uint8_t m_leds = 0; uint8_t m_leds = 0;
static TestDriver* m_this; static TestDriver* m_this;
}; };
#endif /* TESTS_TEST_COMMON_TEST_DRIVER_H_ */

View File

@@ -496,5 +496,3 @@ xatoi:
ret ret
.endfunc .endfunc
#endif #endif

View File

@@ -18,4 +18,3 @@ OPT_DEFS += -DFIXED_NUM_CONFIGURATIONS=1
ifeq ($(strip $(MIDI_ENABLE)), yes) ifeq ($(strip $(MIDI_ENABLE)), yes)
include $(TMK_PATH)/protocol/midi.mk include $(TMK_PATH)/protocol/midi.mk
endif endif