Skip to content

Commit 6b85840

Browse files
committed
Adjust tab indentation
1 parent 322f0e0 commit 6b85840

File tree

14 files changed

+86
-83
lines changed

14 files changed

+86
-83
lines changed

tools/make/lib/complexity/plato.mk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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:
3131
JAVASCRIPT_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 #

tools/make/lib/docs/documentationjs.mk

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,8 @@ DOCUMENTATIONJS_HTML_OUT ?= $(DOCUMENTATIONJS_OUT)/static
4242
DOCUMENTATIONJS_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:

tools/make/lib/docs/jsdoc.mk

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -51,17 +51,19 @@ JSDOC_HTML_OUT ?= $(JSDOC_OUT)/static
5151
JSDOC_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 #

tools/make/lib/lint/remark.mk

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,6 @@ REMARK_EXT ?= md
3030

3131
# Define the command-line options when invoking the remark executable:
3232
MARKDOWN_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)

tools/make/lib/ls/benchmarks.mk

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@ find_print_benchmarks_list := -exec printf '%s\n' {} \;
2020

2121
# Define the command flags:
2222
FIND_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

3333
ifneq ($(KERNEL), Darwin)

tools/make/lib/ls/examples.mk

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,15 @@ find_print_examples_list := -exec printf '%s\n' {} \;
2020

2121
# Define the command flags:
2222
FIND_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

3434
ifneq ($(KERNEL), Darwin)

tools/make/lib/ls/files.mk

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ find_print_files_list := -exec printf '%s\n' {} \;
1717

1818
# Define the command flags:
1919
FIND_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

2727
ifneq ($(KERNEL), Darwin)
2828
FIND_FILES_FLAGS := -regextype posix-extended $(FIND_FILES_FLAGS)

tools/make/lib/ls/markdown.mk

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ find_print_markdown_list := -exec printf '%s\n' {} \;
1717

1818
# Define the command flags:
1919
FIND_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

2626
ifneq ($(KERNEL), Darwin)
2727
FIND_MARKDOWN_FLAGS := -regextype posix-extended $(FIND_MARKDOWN_FLAGS)

tools/make/lib/ls/modules.mk

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ MODULES_FILE ?= package.json
1717

1818
# Define the command flags:
1919
FIND_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

2727
ifneq ($(KERNEL), Darwin)
2828
FIND_MODULES_FLAGS := -regextype posix-extended $(FIND_MODULES_FLAGS)

tools/make/lib/ls/sources.mk

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@ find_print_sources_list := -exec printf '%s\n' {} \;
1717

1818
# Define the command flags:
1919
FIND_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

3030
ifneq ($(KERNEL), Darwin)
3131
FIND_SOURCES_FLAGS := -regextype posix-extended $(FIND_SOURCES_FLAGS)

0 commit comments

Comments
 (0)