angularjs.js 391 B

12345678910111213141516171819
  1. // Copyright (c) Microsoft Corporation.
  2. // Licensed under the MIT License.
  3. /**
  4. * Shareable config for AngularJS apps.
  5. */
  6. "use strict";
  7. module.exports = {
  8. plugins: [
  9. "@microsoft/sdl"
  10. ],
  11. rules: {
  12. "@microsoft/sdl/no-angularjs-enable-svg": "error",
  13. "@microsoft/sdl/no-angularjs-sanitization-whitelist": "error",
  14. "@microsoft/sdl/no-angularjs-bypass-sce": "error"
  15. }
  16. }