Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
7 changes: 7 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,21 @@ root = true

[*]
indent_style = space
max_line_length = 100
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = false
insert_final_newline = false

[*.json]
max_file_length = 80

[*.md]
max_line_length = 65

[*.tsx]
max_line_length = 65

[*.ts]
max_line_length = 65
31 changes: 31 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
"root": true,

"overrides": [
{
"files": ["*.js", "*.mjs", "*.ts", "*.mts"],
"extends": ["plugin:@typescript-eslint/recommended"],
"plugins": ["@typescript-eslint", "@nrwl/nx"],
"parser": "@typescript-eslint/parser",
"rules": {
"@typescript-eslint/no-unused-vars": ["error", { "argsIgnorePattern": "^_" }]
// "@nrwl/nx/enforce-module-boundaries": [
// "error",
// {
// "allow": [],
// "depConstraints": [
// {
// "sourceTag": "scope:lib",
// "onlyDependOnLibsWithTags": ["scope:lib"]
// },
// {
// "sourceTag": "*",
// "onlyDependOnLibsWithTags": ["*"]
// }
// ]
// }
// ]
}
}
]
}
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,9 @@
node_modules
docs
!src/.vitepress
build
*.tsbuildinfo
.turbo
.ignore
tmp
tsdist
Loading