2021-09-14 14:50:42 +08:00
|
|
|
{
|
|
|
|
"extends": "eslint-config-atomic",
|
2023-05-25 05:57:08 +08:00
|
|
|
"ignorePatterns": ["dist/", "node_modules/", "dev/cpp_vcpkg_project"],
|
|
|
|
"rules": {
|
|
|
|
"no-unused-vars": "off",
|
2023-09-05 10:27:23 +08:00
|
|
|
"no-empty-function": "off",
|
2023-05-25 05:57:08 +08:00
|
|
|
"@typescript-eslint/no-unused-vars": [
|
|
|
|
"warn",
|
|
|
|
{
|
|
|
|
"argsIgnorePattern": "^_",
|
|
|
|
"varsIgnorePattern": "^_",
|
|
|
|
"caughtErrorsIgnorePattern": "^_",
|
|
|
|
"destructuredArrayIgnorePattern": "^_"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
2021-09-14 14:50:42 +08:00
|
|
|
}
|