Skip to content
Snippets Groups Projects
Select Git revision
  • 4e0c96c59607fd366b7bb2430706351820b2369d
  • main default
  • tp3
  • tp2
  • tp1
  • tp3-correction
  • tp2-correction
  • tp1-correction
  • admins
9 results

Operators.py

Blame
  • Forked from an inaccessible project.
    .eslintrc.js 555 B
    module.exports = {
      root: true,
      env: {
        node: true,
      },
      extends: [
        "plugin:vue/vue3-essential",
        "eslint:recommended",
        "plugin:prettier/recommended",
      ],
      parserOptions: {
        parser: "@babel/eslint-parser",
      },
      rules: {
        "no-console": process.env.NODE_ENV === "production" ? "warn" : "off",
        "no-debugger": process.env.NODE_ENV === "production" ? "warn" : "off",
        "vue/attribute-hyphenation": ["error", "never"],
        "vue/component-name-in-template-casing": "error",
        "vue/multi-word-component-names": "off",
      },
    };