docs: add linter · engineerping/JavaGuide@6bdc809 · GitHub
Skip to content

Commit 6bdc809

Browse files
committed
docs: add linter
1 parent 893c673 commit 6bdc809

146 files changed

Lines changed: 1293 additions & 1245 deletions

File tree

Some content is hidden

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

.markdownlint.json

Lines changed: 19 additions & 0 deletions

.markdownlintignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
**/node_modules/**
2+
3+
# markdown snippets
4+
*.snippet.md

.prettierignore

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Vuepress Cache
2+
**/.vuepress/.cache/**
3+
# Vuepress Temp
4+
**/.vuepress/.temp/**
5+
# Vuepress Output
6+
dist/
7+
8+
# Node modules
9+
node_modules/
10+
11+
# pnpm lock file
12+
pnpm-lock.yaml
13+
14+
index.html
15+
sw.js

docs/.vuepress/navbar.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,11 @@ import { navbar } from "vuepress-theme-hope";
22

33
export default navbar([
44
{ text: "面试指南", icon: "java", link: "/home.md" },
5-
{ text: "知识星球", icon: "code", link: "/about-the-author/zhishixingqiu-two-years.md" },
5+
{
6+
text: "知识星球",
7+
icon: "code",
8+
link: "/about-the-author/zhishixingqiu-two-years.md",
9+
},
610
{ text: "开源项目", icon: "github", link: "/open-source-project/" },
711
{ text: "技术书籍", icon: "book", link: "/books/" },
812
{

docs/cs-basics/algorithms/linkedlist-algorithm-problems.md

Lines changed: 24 additions & 37 deletions

0 commit comments

Comments
 (0)