-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path.eslintrc.cjs
33 lines (32 loc) · 986 Bytes
/
.eslintrc.cjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/* eslint-env node */
require("@rushstack/eslint-patch/modern-module-resolution");
module.exports = {
root: true,
extends: ["plugin:vue/vue3-essential", "eslint:recommended", "@vue/eslint-config-typescript", "@vue/eslint-config-prettier"],
ignorePatterns: ["ios/*", "android/*"],
rules: {
"prettier/prettier": [
"error",
{
endOfLine: "lf",
tabWidth: 4,
useTabs: false,
printWidth: 150,
arrowParens: "avoid",
},
],
// Ignore all unused variables that start with an underscore
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": [
"warn", // or "error"
{
argsIgnorePattern: "^_",
varsIgnorePattern: "^_",
caughtErrorsIgnorePattern: "^_",
},
],
},
parserOptions: {
ecmaVersion: "latest",
},
};