mirror of
https://github.com/ankitects/anki.git
synced 2025-12-11 05:46:55 -05:00
* Added: Leech suspend to simulator * Added: leech threshold spin box * Update git rev * Added: Save to preset options * ./check * Added: "Advanced settings" dropdown * Removed: Indent * Added: Easy days * Added: Sticky header * Removed: Easy Day updating without saving * un-nest disclosure * bump fsrs * Update a VSCode setting to match recent releases * Move Easy Days above the Advanced settings I think it's a bit more logical to have Advanced come last. * Ensure graph fits inside screen height * Bump fsrs version
42 lines
1.3 KiB
JSON
42 lines
1.3 KiB
JSON
{
|
|
"editor.formatOnSave": true,
|
|
"[python]": {
|
|
"editor.codeActionsOnSave": {
|
|
"source.organizeImports": "explicit"
|
|
}
|
|
},
|
|
"files.watcherExclude": {
|
|
"**/.git/objects/**": true,
|
|
"**/.git/subtree-cache/**": true,
|
|
"**/node_modules/*/**": true,
|
|
".bazel/**": true
|
|
},
|
|
"python.analysis.extraPaths": [
|
|
"./pylib",
|
|
"out/pylib",
|
|
"./pylib/anki/_vendor",
|
|
"out/qt",
|
|
"qt"
|
|
],
|
|
"python.formatting.provider": "black",
|
|
"python.linting.mypyEnabled": false,
|
|
"python.analysis.diagnosticSeverityOverrides": {
|
|
"reportMissingModuleSource": "none"
|
|
},
|
|
"rust-analyzer.checkOnSave.allTargets": false,
|
|
"rust-analyzer.files.excludeDirs": [".bazel", "node_modules"],
|
|
"rust-analyzer.procMacro.enable": true,
|
|
// this formats 'use' blocks in a nicer way, but requires you to run
|
|
// 'rustup install nightly'.
|
|
"rust-analyzer.rustfmt.extraArgs": ["+nightly"],
|
|
"search.exclude": {
|
|
"**/node_modules": true,
|
|
".bazel/**": true,
|
|
"qt/bundle/PyOxidizer": true
|
|
},
|
|
"rust-analyzer.cargo.buildScripts.enable": true,
|
|
"python.analysis.typeCheckingMode": "off",
|
|
"terminal.integrated.env.windows": {
|
|
"PATH": "c:\\msys64\\usr\\bin;${env:Path}"
|
|
}
|
|
}
|