Revision ad95623d89bf9ae86b596f6af0c5ace8a6233217 authored by Quentin Madura on 18 May 2021, 19:02:22 UTC, committed by Quentin Madura on 18 May 2021, 19:02:22 UTC
1 parent b94abcd
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