Skip to content
Snippets Groups Projects
Select Git revision
  • 49c7c7746ae815de5d39943790cdd05d90aafd38
  • master default protected
  • multiprocessing
  • experiment/clara
  • experiment/spec2B-poc
  • experiment/qivalio-poc
  • experiment/ertms
  • MAY-2023
  • FEB-2023
  • EGC-2023
  • 0.2.1
  • v0.2.0
  • v0.1.2
13 results

CHANGELOG

Blame
  • To find the state of this project's repository at the time of any of these versions, check out the tags.
    .eslintrc 1.18 KiB
    {
      "env": {
        "jest/globals": true
      },
      "extends": ["airbnb","react-app"],
      "globals": {
        "page": true,
        "document": true
      },
      "plugins": ["jest"],
      "rules": {
        "import/prefer-default-export": "off",
        "no-console": "off",
        "react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }],
        "require-jsdoc": ["error", {
          "require": {
            "FunctionDeclaration": true,
            "MethodDefinition": true,
            "ClassDeclaration": true,
            "ArrowFunctionExpression": true,
            "FunctionExpression": true
          }
        }],
        "no-underscore-dangle": "off",
        "react/prefer-stateless-function": "off",
        "sort-keys": ["error", "asc", {
          "caseSensitive": false,
          "natural": false
        }],
        "react/jsx-props-no-spreading": "off",
        "react/function-component-definition": "off",
        "default-param-last": "off",
        "arrow-parens": "off",
        "import/no-anonymous-default-export": "off",
        "max-len": ["error", {
          "code": 120,
          "ignoreComments": true,
          "ignoreStrings": true,
          "ignoreTemplateLiterals": true,
          "ignoreRegExpLiterals": true
        }],
        "react/jsx-uses-react": "off",
        "react/react-in-jsx-scope": "off"
      }
    }