2020-11-07 23:08:00 +03:00
|
|
|
// Copyright (c) Microsoft Corporation.
|
|
|
|
// Licensed under the MIT License.
|
|
|
|
|
|
|
|
"use strict";
|
|
|
|
|
2024-09-29 00:04:48 +03:00
|
|
|
module.exports = (pluginSdl) => {
|
|
|
|
return [
|
|
|
|
{
|
|
|
|
plugins: {
|
2024-10-01 16:30:42 +03:00
|
|
|
"@microsoft/sdl": pluginSdl
|
2024-09-29 00:04:48 +03:00
|
|
|
},
|
|
|
|
rules: {
|
2024-10-01 16:30:42 +03:00
|
|
|
"@microsoft/sdl/no-electron-node-integration": "error"
|
|
|
|
}
|
|
|
|
}
|
2024-09-29 00:04:48 +03:00
|
|
|
];
|
2024-10-01 13:43:46 +03:00
|
|
|
};
|