Revision 63519c81bf8be27d83b4b3a27d6a2bb634794990 authored by Quentin Madura on 21 May 2021, 13:29:37 UTC, committed by Quentin Madura on 21 May 2021, 13:29:37 UTC
1 parent 247cf9c
Raw File
.eslintrc.js
module.exports = {
  env: {
    node: true,
    es6: true,
  },
  extends: [
    "eslint:recommended",
    "plugin:vue/essential",
    "prettier",
    "plugin:cypress/recommended",
    "plugin:prettier-vue/recommended",
  ],
  plugins: ["prettier", "vue"],
  globals: {
    Atomics: "readonly",
    SharedArrayBuffer: "readonly",
  },
  parserOptions: {
    ecmaVersion: 2018,
    sourceType: "module",
    parser: "babel-eslint",
  },
  rules: {
    "no-irregular-whitespace": 0,
  },
}
back to top