File tree Expand file tree Collapse file tree 14 files changed +86
-83
lines changed
Expand file tree Collapse file tree 14 files changed +86
-83
lines changed Original file line number Diff line number Diff line change @@ -29,8 +29,8 @@ PLATO_HTML_REPORT ?= $(JAVASCRIPT_COMPLEXITY_DIR)/index.html
2929
3030# Define the command-line options to use when invoking the plato executable:
3131JAVASCRIPT_COMPLEXITY_FLAGS ?= \
32- --dir $(JAVASCRIPT_COMPLEXITY_DIR ) \
33- --title $(PLATO_REPORT_TITLE )
32+ --dir $(JAVASCRIPT_COMPLEXITY_DIR ) \
33+ --title $(PLATO_REPORT_TITLE )
3434
3535
3636# TARGETS #
Original file line number Diff line number Diff line change @@ -42,7 +42,8 @@ DOCUMENTATIONJS_HTML_OUT ?= $(DOCUMENTATIONJS_OUT)/static
4242DOCUMENTATIONJS_HTML ?= $(DOCUMENTATIONJS_HTML_OUT ) /index.html
4343
4444# Define command-line options to be used when invoking the documentation.js executable to generate HTML documentation:
45- DOCUMENTATIONJS_HTML_FLAGS ?= --format html \
45+ DOCUMENTATIONJS_HTML_FLAGS ?= \
46+ --format html \
4647 --output $(DOCUMENTATIONJS_HTML_OUT )
4748
4849# Define command-line options to be used when invoking the documentation.js executable to generate JSON:
Original file line number Diff line number Diff line change @@ -51,17 +51,19 @@ JSDOC_HTML_OUT ?= $(JSDOC_OUT)/static
5151JSDOC_HTML ?= $(JSDOC_HTML_OUT ) /index.html
5252
5353# Define command-line options to be used when invoking the JSDoc executable to generate HTML documentation:
54- JSDOC_HTML_FLAGS ?= --template $(JSDOC_HTML_TEMPLATE ) \
55- --configure $(JSDOC_CONF ) \
56- --encoding utf8 \
57- --destination $(JSDOC_HTML_OUT ) \
58- --verbose
54+ JSDOC_HTML_FLAGS ?= \
55+ --template $(JSDOC_HTML_TEMPLATE ) \
56+ --configure $(JSDOC_CONF ) \
57+ --encoding utf8 \
58+ --destination $(JSDOC_HTML_OUT ) \
59+ --verbose
5960
6061# Define command-line options to be used when invoking the JSDoc executable to generate JSDoc JSON:
61- JSDOC_JSON_FLAGS ?= --template $(JSDOC_JSON_TEMPLATE ) \
62- --configure $(JSDOC_CONF ) \
63- --encoding utf8 \
64- --destination console
62+ JSDOC_JSON_FLAGS ?= \
63+ --template $(JSDOC_JSON_TEMPLATE ) \
64+ --configure $(JSDOC_CONF ) \
65+ --encoding utf8 \
66+ --destination console
6567
6668
6769# TARGETS #
Original file line number Diff line number Diff line change @@ -30,6 +30,6 @@ REMARK_EXT ?= md
3030
3131# Define the command-line options when invoking the remark executable:
3232MARKDOWN_LINT_FLAGS ?= \
33- --ext $(REMARK_EXT ) \
34- --rc-path $(REMARK_CONF ) \
35- --ignore-path $(REMARK_IGNORE )
33+ --ext $(REMARK_EXT ) \
34+ --rc-path $(REMARK_CONF ) \
35+ --ignore-path $(REMARK_IGNORE )
Original file line number Diff line number Diff line change @@ -20,14 +20,14 @@ find_print_benchmarks_list := -exec printf '%s\n' {} \;
2020
2121# Define the command flags:
2222FIND_BENCHMARKS_FLAGS ?= \
23- -name "$(BENCHMARKS_PATTERN ) " \
24- -path "$(ROOT_DIR ) /**/$(BENCHMARKS_FOLDER ) /**" \
25- -regex "$(BENCHMARKS_FILTER ) " \
26- -not -path "$(ROOT_DIR ) /.*" \
27- -not -path "$(NODE_MODULES ) /*" \
28- -not -path "$(TOOLS_DIR ) /*" \
29- -not -path "$(BUILD_DIR ) /*" \
30- -not -path "$(REPORTS_DIR ) /*"
23+ -name "$(BENCHMARKS_PATTERN ) " \
24+ -path "$(ROOT_DIR ) /**/$(BENCHMARKS_FOLDER ) /**" \
25+ -regex "$(BENCHMARKS_FILTER ) " \
26+ -not -path "$(ROOT_DIR ) /.*" \
27+ -not -path "$(NODE_MODULES ) /*" \
28+ -not -path "$(TOOLS_DIR ) /*" \
29+ -not -path "$(BUILD_DIR ) /*" \
30+ -not -path "$(REPORTS_DIR ) /*"
3131
3232
3333ifneq ($(KERNEL ) , Darwin)
Original file line number Diff line number Diff line change @@ -20,15 +20,15 @@ find_print_examples_list := -exec printf '%s\n' {} \;
2020
2121# Define the command flags:
2222FIND_EXAMPLES_FLAGS ?= \
23- -name "$(EXAMPLES_PATTERN ) " \
24- -path "$(ROOT_DIR ) /**/$(EXAMPLES_FOLDER ) /**" \
25- -regex "$(EXAMPLES_FILTER ) " \
26- -not -path "$(ROOT_DIR ) /.*" \
27- -not -path "$(NODE_MODULES ) /*" \
28- -not -path "$(TOOLS_DIR ) /*" \
29- -not -path "$(BUILD_DIR ) /*" \
30- -not -path "$(REPORTS_DIR ) /*" \
31- -not -path "**/$(EXAMPLES_FOLDER ) /fixtures/*"
23+ -name "$(EXAMPLES_PATTERN ) " \
24+ -path "$(ROOT_DIR ) /**/$(EXAMPLES_FOLDER ) /**" \
25+ -regex "$(EXAMPLES_FILTER ) " \
26+ -not -path "$(ROOT_DIR ) /.*" \
27+ -not -path "$(NODE_MODULES ) /*" \
28+ -not -path "$(TOOLS_DIR ) /*" \
29+ -not -path "$(BUILD_DIR ) /*" \
30+ -not -path "$(REPORTS_DIR ) /*" \
31+ -not -path "**/$(EXAMPLES_FOLDER ) /fixtures/*"
3232
3333
3434ifneq ($(KERNEL ) , Darwin)
Original file line number Diff line number Diff line change @@ -17,12 +17,12 @@ find_print_files_list := -exec printf '%s\n' {} \;
1717
1818# Define the command flags:
1919FIND_FILES_FLAGS ?= \
20- -name "$(FILES_PATTERN ) " \
21- -regex "$(FILES_FILTER ) " \
22- -not -path "$(ROOT_DIR ) /.*" \
23- -not -path "$(NODE_MODULES ) /*" \
24- -not -path "$(BUILD_DIR ) /*" \
25- -not -path "$(REPORTS_DIR ) /*"
20+ -name "$(FILES_PATTERN ) " \
21+ -regex "$(FILES_FILTER ) " \
22+ -not -path "$(ROOT_DIR ) /.*" \
23+ -not -path "$(NODE_MODULES ) /*" \
24+ -not -path "$(BUILD_DIR ) /*" \
25+ -not -path "$(REPORTS_DIR ) /*"
2626
2727ifneq ($(KERNEL ) , Darwin)
2828 FIND_FILES_FLAGS := -regextype posix-extended $(FIND_FILES_FLAGS)
Original file line number Diff line number Diff line change @@ -17,11 +17,11 @@ find_print_markdown_list := -exec printf '%s\n' {} \;
1717
1818# Define the command flags:
1919FIND_MARKDOWN_FLAGS ?= \
20- -name "$(MARKDOWN_PATTERN ) " \
21- -regex "$(MARKDOWN_FILTER ) " \
22- -not -path "$(NODE_MODULES ) /*" \
23- -not -path "$(BUILD_DIR ) /*" \
24- -not -path "$(REPORTS_DIR ) /*"
20+ -name "$(MARKDOWN_PATTERN ) " \
21+ -regex "$(MARKDOWN_FILTER ) " \
22+ -not -path "$(NODE_MODULES ) /*" \
23+ -not -path "$(BUILD_DIR ) /*" \
24+ -not -path "$(REPORTS_DIR ) /*"
2525
2626ifneq ($(KERNEL ) , Darwin)
2727 FIND_MARKDOWN_FLAGS := -regextype posix-extended $(FIND_MARKDOWN_FLAGS)
Original file line number Diff line number Diff line change @@ -17,12 +17,12 @@ MODULES_FILE ?= package.json
1717
1818# Define the command flags:
1919FIND_MODULES_FLAGS ?= \
20- -name "$(MODULES_FILE ) " \
21- -regex "$(MODULES_FILTER ) " \
22- -not -path "$(NODE_MODULES ) /*" \
23- -not -path "$(BUILD_DIR ) /*" \
24- -not -path "$(REPORTS_DIR ) /*" \
25- -exec dirname {} \;
20+ -name "$(MODULES_FILE ) " \
21+ -regex "$(MODULES_FILTER ) " \
22+ -not -path "$(NODE_MODULES ) /*" \
23+ -not -path "$(BUILD_DIR ) /*" \
24+ -not -path "$(REPORTS_DIR ) /*" \
25+ -exec dirname {} \;
2626
2727ifneq ($(KERNEL ) , Darwin)
2828 FIND_MODULES_FLAGS := -regextype posix-extended $(FIND_MODULES_FLAGS)
Original file line number Diff line number Diff line change @@ -17,15 +17,15 @@ find_print_sources_list := -exec printf '%s\n' {} \;
1717
1818# Define the command flags:
1919FIND_SOURCES_FLAGS ?= \
20- -name "$(SOURCES_PATTERN ) " \
21- -regex "$(SOURCES_FILTER ) " \
22- -not -path "$(ROOT_DIR ) /.*" \
23- -not -path "$(NODE_MODULES ) /*" \
24- -not -path "$(TOOLS_DIR ) /*" \
25- -not -path "$(BUILD_DIR ) /*" \
26- -not -path "$(REPORTS_DIR ) /*" \
27- -not -path "**/$(EXAMPLES_FOLDER ) /*" \
28- -not -path "**/$(TESTS_FOLDER ) /*"
20+ -name "$(SOURCES_PATTERN ) " \
21+ -regex "$(SOURCES_FILTER ) " \
22+ -not -path "$(ROOT_DIR ) /.*" \
23+ -not -path "$(NODE_MODULES ) /*" \
24+ -not -path "$(TOOLS_DIR ) /*" \
25+ -not -path "$(BUILD_DIR ) /*" \
26+ -not -path "$(REPORTS_DIR ) /*" \
27+ -not -path "**/$(EXAMPLES_FOLDER ) /*" \
28+ -not -path "**/$(TESTS_FOLDER ) /*"
2929
3030ifneq ($(KERNEL ) , Darwin)
3131 FIND_SOURCES_FLAGS := -regextype posix-extended $(FIND_SOURCES_FLAGS)
You can’t perform that action at this time.
0 commit comments