Skip to content

Commit

Permalink
fix(vscode-ext): remove invalid deps (#1991)
Browse files Browse the repository at this point in the history
## Proposed change
Remove invalid dependencies

## Related issues

- 🐛 Fixes #1931
  • Loading branch information
matthieu-crouzet authored Jul 24, 2024
2 parents acc15da + 17c66d9 commit 6e94aac
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
13 changes: 13 additions & 0 deletions apps/vscode-extension/.eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,18 @@ module.exports = {
},
'extends': [
'../../.eslintrc.js'
],
'overrides': [
{
'files': ['**/package.json'],
'rules': {
'@nx/dependency-checks': ['error', {
'buildTargets': ['build', 'build-builders', 'compile', 'test'],
'checkObsoleteDependencies': false,
'checkVersionMismatches': false,
'ignoredDependencies': ['ora', '@o3r/test-helpers', '@o3r/schematics']
}]
}
}
]
};
1 change: 0 additions & 1 deletion apps/vscode-extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,6 @@
},
"dependencies": {
"@o3r/design": "workspace:^",
"@o3r/schematics": "workspace:^",
"eslint": "^8.57.0"
},
"devDependencies": {
Expand Down

0 comments on commit 6e94aac

Please sign in to comment.