mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-13 17:22:15 -05:00
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:
File diff suppressed because one or more lines are too long
@@ -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/**',
|
||||
|
||||
Reference in New Issue
Block a user