Skip to content

Commit

Permalink
feat(zhi-core): add commitlint support
Browse files Browse the repository at this point in the history
  • Loading branch information
terwer committed Apr 26, 2023
1 parent 2d64ccd commit 332ad87
Show file tree
Hide file tree
Showing 753 changed files with 18,969 additions and 914,560 deletions.
1 change: 0 additions & 1 deletion .gitattributes

This file was deleted.

1 change: 1 addition & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules
15 changes: 0 additions & 15 deletions .eslintrc.cjs

This file was deleted.

46 changes: 46 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
{
"root": true,
"ignorePatterns": ["**/*"],
"extends": ["prettier"],
"plugins": ["@nrwl/nx", "prettier"],
"overrides": [
{
"files": ["*.ts", "*.tsx", "*.js", "*.jsx"],
"rules": {
"@nrwl/nx/enforce-module-boundaries": [
"error",
{
"enforceBuildableLibDependency": true,
"allow": [],
"depConstraints": [
{
"sourceTag": "*",
"onlyDependOnLibsWithTags": ["*"]
}
]
}
]
}
},
{
"files": ["*.ts", "*.tsx"],
"extends": ["plugin:@nrwl/nx/typescript", "prettier"],
"rules": {
// Note: you must disable the base rule as it can report incorrect errors
"semi": "off",
"quotes": "off",
"prettier/prettier": "error"
}
},
{
"files": ["*.js", "*.jsx"],
"extends": ["plugin:@nrwl/nx/javascript", "prettier"],
"rules": {
// Note: you must disable the base rule as it can report incorrect errors
"semi": "off",
"quotes": "off",
"prettier/prettier": "error"
}
}
]
}
300 changes: 0 additions & 300 deletions .github/dependabot.yml

This file was deleted.

Loading

0 comments on commit 332ad87

Please sign in to comment.