More layering movement (#24023)

* finish layering

* undo eslint changes

* undo

* restore -> backup

* fix paths

* Skip commandLine layers check

* fix path

* fix tsec path
This commit is contained in:
Charles Gagnon
2023-07-31 10:17:43 -07:00
committed by GitHub
parent 9043998bfd
commit 5b70fd1afe
72 changed files with 178 additions and 190 deletions

File diff suppressed because one or more lines are too long

View File

@@ -197,13 +197,22 @@ const RULES: IRule[] = [
// Electron (sandbox)
{
target: '**/{vs,sql}/**/electron-sandbox/**',
target: '**/{vs,sql}/**/electron-sandbox/**/!(commandLine.ts)', // {{SQL CARBON EDIT}} commandLine currently uses querystring, so skip that one for now
allowedTypes: CORE_TYPES,
disallowedDefinitions: [
'@types/node' // no node.js
]
},
// {{SQL CARBON TODO}} chgagnon investigate the use of querystring
{
target: '**/{vs,sql}/**/electron-sandbox/commandLine.ts',
allowedTypes: [
...CORE_TYPES,
'@types/node'
]
},
// Electron (renderer): skip
{
target: '**/{vs,sql}/**/electron-browser/**',