Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

no-ternary.js 878B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /**
  2. * @fileoverview Rule to flag use of ternary operators.
  3. * @author Ian Christian Myers
  4. */
  5. "use strict";
  6. //------------------------------------------------------------------------------
  7. // Rule Definition
  8. //------------------------------------------------------------------------------
  9. module.exports = {
  10. meta: {
  11. type: "suggestion",
  12. docs: {
  13. description: "disallow ternary operators",
  14. category: "Stylistic Issues",
  15. recommended: false,
  16. url: "https://eslint.org/docs/rules/no-ternary"
  17. },
  18. schema: [],
  19. messages: {
  20. noTernaryOperator: "Ternary operator used."
  21. }
  22. },
  23. create(context) {
  24. return {
  25. ConditionalExpression(node) {
  26. context.report({ node, messageId: "noTernaryOperator" });
  27. }
  28. };
  29. }
  30. };