.eslintrc.json 709 B

12345678910111213141516171819202122232425
  1. {
  2. "extends": "plugin:@tinymce/editor",
  3. "parserOptions": {
  4. "sourceType": "module",
  5. "project": [
  6. "./tsconfig.json",
  7. "modules/*/tsconfig.json"
  8. ]
  9. },
  10. "rules": {
  11. "@typescript-eslint/camelcase": "off", // leave off
  12. "@typescript-eslint/member-ordering": "off",
  13. "@typescript-eslint/no-empty-function": "off",
  14. "@typescript-eslint/no-shadow": "off",
  15. "@typescript-eslint/no-this-alias": "off",
  16. "@typescript-eslint/prefer-for-of": "off",
  17. "@typescript-eslint/prefer-regexp-exec": "off",
  18. "no-empty": "off",
  19. "no-underscore-dangle": "off",
  20. "one-var": "off",
  21. "prefer-rest-params": "off",
  22. "prefer-spread": "off",
  23. "max-len": ["warn", 260]
  24. }
  25. }