react.js 480 B

1234567891011121314151617181920212223242526
  1. // Copyright (c) Microsoft Corporation.
  2. // Licensed under the MIT License.
  3. /**
  4. * Shareable config for React apps.
  5. */
  6. "use strict";
  7. module.exports = {
  8. plugins: [
  9. "react",
  10. "@microsoft/sdl"
  11. ],
  12. rules: {
  13. "react/no-danger": "error",
  14. "@microsoft/sdl/react-iframe-missing-sandbox": "error",
  15. "react/jsx-no-target-blank": ["error",
  16. {
  17. allowReferrer: false,
  18. enforceDynamicLinks: 'always',
  19. warnOnSpreadAttributes: true,
  20. }
  21. ]
  22. }
  23. }