Revision 07b445621b978ac6130d57138455ce688128688e authored by Andrey Zhavoronkov on 20 July 2023, 09:49:20 UTC, committed by GitHub on 20 July 2023, 09:49:20 UTC
## \[2.5.1\] - 2023-07-19
### Fixed
- Memory leak related to unclosed av container
(<https://github.com/opencv/cvat/pull/6501>)
1 parent 519c57f
Raw File
.prettierrc
{
    "arrowParens": "always",
    "bracketSpacing": true,
    "embeddedLanguageFormatting": "auto",
    "htmlWhitespaceSensitivity": "css",
    "insertPragma": false,
    "jsxBracketSameLine": false,
    "jsxSingleQuote": true,
    "printWidth": 120,
    "proseWrap": "preserve",
    "quoteProps": "as-needed",
    "requirePragma": false,
    "semi": true,
    "singleQuote": true,
    "tabWidth": 4,
    "trailingComma": "all",
    "useTabs": false,
    "vueIndentScriptAndStyle": false,
    "overrides": [
        {
            "files": ["*.json", "*.yml", "*.yaml", "*.md"],
            "options": {
                "tabWidth": 2
            }
        }
    ]
}
back to top