.eslintrc.relax.js 271 B

12345678910111213
  1. const strict = require('./.eslintrc.js');
  2. module.exports = {
  3. ...strict,
  4. extends: ['sentry-app'],
  5. rules: {
  6. 'emotion/jsx-import': 'off',
  7. 'emotion/no-vanilla': 'warn',
  8. 'emotion/import-from-emotion': 'error',
  9. 'emotion/styled-import': 'error',
  10. },
  11. };