hippofish/packages/client/.eslintrc.json

21 lines
489 B
JSON
Raw Normal View History

2023-07-17 00:32:32 +02:00
{
"extends": ["@eslint-sets/vue3", "@eslint-sets/vue3-ts"],
2024-03-28 17:24:50 +01:00
"plugins": ["file-progress"],
2023-09-02 01:27:33 +02:00
"ignorePatterns": ["**/*.json5"],
2023-07-17 00:32:32 +02:00
"rules": {
2024-03-30 17:21:19 +01:00
"file-progress/activate": 1,
2024-03-30 17:29:54 +01:00
"prettier/prettier": 0,
2024-03-30 18:29:27 +01:00
"one-var": ["error", "never"],
"@typescript-eslint/no-unused-vars": [
"error",
{
"argsIgnorePattern": "^_",
"varsIgnorePattern": "^_",
"caughtErrorsIgnorePattern": "^_",
"destructuredArrayIgnorePattern": "^_"
}
2024-04-04 12:48:23 +02:00
],
"vue/no-setup-props-destructure": "off"
2023-07-17 00:32:32 +02:00
}
}