11 lines
128 B
Makefile
11 lines
128 B
Makefile
|
RPLUGIN_PATH := ./rplugin/python3/deoplete/sources
|
||
|
|
||
|
all: test
|
||
|
|
||
|
test: flake8
|
||
|
|
||
|
flake8:
|
||
|
flake8 rplugin tests
|
||
|
|
||
|
.PHONY: test flake8
|