electron.js 273 B

1234567891011121314151617
  1. // Copyright (c) Microsoft Corporation.
  2. // Licensed under the MIT License.
  3. /**
  4. * Shareable config for Electron apps.
  5. */
  6. "use strict";
  7. module.exports = {
  8. plugins: [
  9. "@microsoft/sdl"
  10. ],
  11. rules: {
  12. "@microsoft/sdl/no-electron-node-integration": "error"
  13. }
  14. }