File tree 5 files changed +39
-4
lines changed
5 files changed +39
-4
lines changed Original file line number Diff line number Diff line change
1
+ #/
2
+ # @license Apache-2.0
3
+ #
4
+ # Copyright (c) 2017 The Stdlib Authors.
5
+ #
6
+ # Licensed under the Apache License, Version 2.0 (the "License");
7
+ # you may not use this file except in compliance with the License.
8
+ # You may obtain a copy of the License at
9
+ #
10
+ # http://www.apache.org/licenses/LICENSE-2.0
11
+ #
12
+ # Unless required by applicable law or agreed to in writing, software
13
+ # distributed under the License is distributed on an "AS IS" BASIS,
14
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
+ # See the License for the specific language governing permissions and
16
+ # limitations under the License.
17
+ #/
18
+
19
+ # Directories #
20
+ ###############
21
+ build/
22
+ downloads/
23
+ reports/
24
+ tmp/
25
+ .git
26
+
27
+ # Only the top-level node_modules directory:
28
+ /node_modules/
29
+
30
+ # Nested node_modules directories below the project node_modules directory:
31
+ lib/node_modules/**/node_modules/
Original file line number Diff line number Diff line change 22
22
REMARK_RUN_JAVASCRIPT_EXAMPLES_CONF ?= $(CONFIG_DIR ) /remark/.remarkrc.js
23
23
24
24
# Define the path to the remark ignore file:
25
- REMARK_RUN_JAVASCRIPT_EXAMPLES_IGNORE ?= $(CONFIG_DIR ) /remark/.remarkignore
25
+ # REMARK_RUN_JAVASCRIPT_EXAMPLES_IGNORE ?= $(CONFIG_DIR)/remark/.remarkignore FIXME
26
+ REMARK_RUN_JAVASCRIPT_EXAMPLES_IGNORE ?= $(ROOT ) /.remarkignore
26
27
27
28
# Define the path to a plugin which processes JavaScript examples in Markdown files:
28
29
REMARK_RUN_JAVASCRIPT_EXAMPLES_PLUGIN ?= $(TOOLS_PKGS_DIR ) /remark/plugins/remark-run-javascript-examples
Original file line number Diff line number Diff line change @@ -25,7 +25,8 @@ MARKDOWN_LINT ?= $(REMARK)
25
25
REMARK_CONF ?= $(CONFIG_DIR ) /remark/.remarkrc.js
26
26
27
27
# Define the path to the remark ignore file:
28
- REMARK_IGNORE ?= $(CONFIG_DIR ) /remark/.remarkignore
28
+ # REMARK_IGNORE ?= $(CONFIG_DIR)/remark/.remarkignore FIXME
29
+ REMARK_IGNORE ?= $(ROOT ) /.remarkignore
29
30
30
31
# Define the command-line options when invoking the remark executable:
31
32
MARKDOWN_LINT_FLAGS ?= \
Original file line number Diff line number Diff line change @@ -37,7 +37,8 @@ EQUATION_RESOURCES_PATH ?= ./docs/img/
37
37
REMARK_EQUATIONS_CONF ?= $(CONFIG_DIR ) /remark/.remarkrc.js
38
38
39
39
# Define the path to the remark ignore file:
40
- REMARK_EQUATIONS_IGNORE ?= $(CONFIG_DIR ) /remark/.remarkignore
40
+ # REMARK_EQUATIONS_IGNORE ?= $(CONFIG_DIR)/remark/.remarkignore FIXME
41
+ REMARK_EQUATIONS_IGNORE ?= $(ROOT ) /.remarkignore
41
42
42
43
# Define the path to the local remark plugins directory:
43
44
REMARK_LOCAL_PLUGINS_DIR ?= $(TOOLS_PKGS_DIR ) /remark/plugins
Original file line number Diff line number Diff line change @@ -28,7 +28,8 @@ GIT_COMMIT_TOCS ?= $(GIT_COMMIT) -m $(GIT_COMMIT_MESSAGE_TOCS)
28
28
REMARK_TOC_CONF ?= $(CONFIG_DIR ) /remark/.remarkrc.js
29
29
30
30
# Define the path to the remark ignore file:
31
- REMARK_TOC_IGNORE ?= $(CONFIG_DIR ) /remark/.remarkignore
31
+ # REMARK_TOC_IGNORE ?= $(CONFIG_DIR)/remark/.remarkignore FIXME
32
+ REMARK_TOC_IGNORE ?= $(ROOT ) /.remarkignore
32
33
33
34
# Define the path to the local remark plugins directory:
34
35
REMARK_LOCAL_PLUGINS_DIR ?= $(TOOLS_PKGS_DIR ) /remark/plugins
You can’t perform that action at this time.
0 commit comments