Skip to content

Commit 7dcb11a

Browse files
authored
Wide-ranging docs update (#21)
Significant improvements to infrastructure and content. This took way too long, but it's done now 😄
1 parent 85deba7 commit 7dcb11a

File tree

504 files changed

+45645
-6598
lines changed

Some content is hidden

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

504 files changed

+45645
-6598
lines changed

.editorconfig

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,21 @@ root = true
55

66
[*]
77
indent_style = space
8+
max_line_length = 100
89
indent_size = 2
910
end_of_line = lf
1011
charset = utf-8
1112
trim_trailing_whitespace = false
1213
insert_final_newline = false
1314

15+
[*.json]
16+
max_file_length = 80
17+
1418
[*.md]
1519
max_line_length = 65
1620

1721
[*.tsx]
1822
max_line_length = 65
23+
24+
[*.ts]
25+
max_line_length = 65

.eslintrc.json

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
{
2+
"root": true,
3+
4+
"overrides": [
5+
{
6+
"files": ["*.js", "*.mjs", "*.ts", "*.mts"],
7+
"extends": ["plugin:@typescript-eslint/recommended"],
8+
"plugins": ["@typescript-eslint", "@nrwl/nx"],
9+
"parser": "@typescript-eslint/parser",
10+
"rules": {
11+
"@typescript-eslint/no-unused-vars": ["error", { "argsIgnorePattern": "^_" }]
12+
// "@nrwl/nx/enforce-module-boundaries": [
13+
// "error",
14+
// {
15+
// "allow": [],
16+
// "depConstraints": [
17+
// {
18+
// "sourceTag": "scope:lib",
19+
// "onlyDependOnLibsWithTags": ["scope:lib"]
20+
// },
21+
// {
22+
// "sourceTag": "*",
23+
// "onlyDependOnLibsWithTags": ["*"]
24+
// }
25+
// ]
26+
// }
27+
// ]
28+
}
29+
}
30+
]
31+
}

.gitignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,9 @@
11
node_modules
22
docs
3+
!src/.vitepress
4+
build
5+
*.tsbuildinfo
6+
.turbo
7+
.ignore
8+
tmp
9+
tsdist

0 commit comments

Comments
 (0)