Skip to content

Instantly share code, notes, and snippets.

View tadashi-aikawa's full-sized avatar

Tadashi Aikawa tadashi-aikawa

View GitHub Profile
@tadashi-aikawa
tadashi-aikawa / .editorconfig
Last active October 23, 2019 16:08
Formatter files
root = true
[*]
charset = utf-8
end_of_line = lf
indent_style = space
indent_size = 2
trim_trailing_whitespace = true
insert_final_newline = true
@tadashi-aikawa
tadashi-aikawa / README.md
Last active July 11, 2020 06:08
GitHub Actions

GitHub Actionsに使うテンプレート一式

@tadashi-aikawa
tadashi-aikawa / Makefile
Last active November 27, 2018 13:30
Makefileのテンプレ
MAKEFLAGS += --warn-undefined-variables
SHELL := /bin/bash
ARGS :=
.SHELLFLAGS := -eu -o pipefail -c
.DEFAULT_GOAL := help
.PHONY: $(shell egrep -oh ^[a-zA-Z0-9][a-zA-Z0-9_-]+: $(MAKEFILE_LIST) | sed 's/://')
help: ## Print this help
@echo 'Usage: make [target]'