Skip to content

Commit be42778

Browse files
TCE-953 bump remark-lint v10 (#567)
* bump remark-lint v10
1 parent f58cb25 commit be42778

File tree

88 files changed

+5496
-4270
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

88 files changed

+5496
-4270
lines changed

.circleci/config.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
version: 2.1
22

33
orbs:
4-
codacy: codacy/base@10.8.0
5-
codacy_plugins_test: codacy/plugins-test@1.1.1
4+
codacy: codacy/base@12.2.0
5+
codacy_plugins_test: codacy/plugins-test@2.0.11
66

77
jobs:
88
build_and_test:
@@ -51,6 +51,7 @@ workflows:
5151
- codacy_plugins_test/run:
5252
name: plugins_test
5353
run_multiple_tests: true
54+
run_json_tests: false
5455
requires:
5556
- publish_docker_local
5657
- codacy/publish_docker:

.gitignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,10 @@ coverage
1010

1111
package-lock.json
1212
yarn-error.log
13+
14+
15+
#Ignore vscode AI rules
16+
.github/copilot-instructions.md
17+
18+
.vscode/
19+
.codacy/

.remarkrc.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ exports.plugins = [
2929
require("remark-preset-lint-consistent"),
3030
require("remark-preset-lint-recommended"),
3131
remarkPresetLintMarkdownStyleGuide,
32+
[require("remark-footnotes"), { inlineNotes: true }],
3233
[require("remark-lint-no-dead-urls"), { skipOffline: true }],
3334
require("remark-lint-heading-whitespace"),
3435
[require("remark-lint-maximum-line-length"), 120],

.vscode/launch.json

Lines changed: 0 additions & 44 deletions
This file was deleted.

.vscode/settings.json

Lines changed: 0 additions & 3 deletions
This file was deleted.

Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG NODE_IMAGE_VERSION=20-alpine
1+
ARG NODE_IMAGE_VERSION=24-alpine
22

33
FROM node:$NODE_IMAGE_VERSION as build
44

@@ -9,6 +9,7 @@ ENV NODE_PATH /usr/lib/node_modules
99
WORKDIR /workdir
1010

1111
COPY package.json .
12+
1213
COPY yarn.lock .
1314

1415
RUN yarn

0 commit comments

Comments
 (0)