Skip to content

Commit

Permalink
feat(nx-dev): add nx blog (#22828)
Browse files Browse the repository at this point in the history
Co-authored-by: Juri <[email protected]>
Co-authored-by: Nicholas Cunningham <[email protected]>
Co-authored-by: Benjamin Cabanes <[email protected]>
  • Loading branch information
4 people authored Apr 29, 2024
1 parent 1f6aba0 commit 458f2cc
Show file tree
Hide file tree
Showing 128 changed files with 3,829 additions and 242 deletions.
35 changes: 35 additions & 0 deletions .eslintrc.base.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
{
"root": true,
"ignorePatterns": ["**/*"],
"plugins": ["@nx"],
"overrides": [
{
"files": ["*.ts", "*.tsx", "*.js", "*.jsx"],
"rules": {
"@nx/enforce-module-boundaries": [
"error",
{
"enforceBuildableLibDependency": true,
"allow": [],
"depConstraints": [
{
"sourceTag": "*",
"onlyDependOnLibsWithTags": ["*"]
}
]
}
]
}
},
{
"files": ["*.ts", "*.tsx"],
"extends": ["plugin:@nx/typescript"],
"rules": {}
},
{
"files": ["*.js", "*.jsx"],
"extends": ["plugin:@nx/javascript"],
"rules": {}
}
]
}
Loading

0 comments on commit 458f2cc

Please sign in to comment.