Commit 6d5cad73 authored by timel's avatar timel

feat: update lint config

parent 881cb912
......@@ -11,8 +11,7 @@
"simple-import-sort"
],
"rules": {
"eqeqeq": 0,
"no-var": "error",
"eqeqeq": "warn",
"@typescript-eslint/consistent-type-definitions": [
"error",
"interface"
......@@ -21,7 +20,11 @@
"simple-import-sort/exports": "warn",
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": [
"error", { "argsIgnorePattern": "^_", "varsIgnorePattern": "^_" }
"error",
{
"argsIgnorePattern": "^_",
"varsIgnorePattern": "^_"
}
]
},
"settings": {
......@@ -30,5 +33,7 @@
"typescript": true
}
},
"ignorePatterns": ["src/api/ocgcore/idl/ocgcore.ts"]
"ignorePatterns": [
"src/api/ocgcore/idl/ocgcore.ts"
]
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment