mirror of
https://github.com/penpot/penpot-plugins.git
synced 2025-01-08 07:50:44 -05:00
36 lines
733 B
JSON
36 lines
733 B
JSON
|
{
|
||
|
"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": {}
|
||
|
}
|
||
|
]
|
||
|
}
|