This repository has been archived on 2023-11-14. You can view files and clone it, but cannot push or open issues/pull-requests.
viscord/packages/renderer/.eslintrc.json

24 lines
541 B
JSON
Raw Permalink Normal View History

2022-07-19 18:07:59 -04:00
{
"env": {
"browser": true,
"node": false
},
"extends": [
/** @see https://eslint.vuejs.org/rules/ */
2022-07-20 16:04:09 -04:00
"eslint:recommended"
// "plugin:react/recommended"
2022-07-19 18:07:59 -04:00
],
"parserOptions": {
"parser": "@typescript-eslint/parser",
"ecmaVersion": 12,
"sourceType": "module"
2022-07-20 16:40:43 -04:00
},
2022-07-20 17:32:23 -04:00
"rules": {
"no-unused-vars": "off",
2022-07-21 15:22:10 -04:00
"@typescript-eslint/no-unused-vars": "off",
2022-07-21 23:45:52 -04:00
"@typescript-eslint/no-explicit-any": "off",
2022-07-22 01:45:37 -04:00
"@typescript-eslint/ban-types": "off",
"@typescript-eslint/no-empty-function": "off"
2022-07-20 17:32:23 -04:00
}
2022-07-19 18:07:59 -04:00
}