Skip to content

Commit

Permalink
[vscode] add a new (mostly empty) code workspace and a clang tidy file
Browse files Browse the repository at this point in the history
The clang tidy file is mostly a copy of the fuchsia one, with a few
tweaks here and there.
  • Loading branch information
travisg committed Jun 3, 2024
1 parent ad5f529 commit 1f6119a
Show file tree
Hide file tree
Showing 2 changed files with 81 additions and 0 deletions.
67 changes: 67 additions & 0 deletions .clang-tidy
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
---
Checks: >
-*,
bugprone-*,
-bugprone-easily-swappable-parameters,
clang-diagnostic-*,
-clang-diagnostic-unused-command-line-argument,
google-*,
-google-runtime-references,
-google-readability-todo,
-google-readability-braces-around-statements,
misc-*,
-misc-noexcept*,
-misc-unused-parameters,
-misc-const-correctness,
-misc-include-cleaner,
modernize-*,
-modernize-avoid-c-arrays,
-modernize-deprecated-headers,
-modernize-raw-string-literal,
-modernize-return-braced-init-list,
-modernize-use-auto,
-modernize-use-equals-delete,
-modernize-use-nodiscard,
-modernize-use-trailing-return-type,
performance-*,
readability-*,
-readability-else-after-return,
-readability-function-cognitive-complexity,
-readability-identifier-length,
-readability-identifier-length,
-readability-implicit-bool-conversion,
-readability-isolate-declaration,
-readability-magic-numbers,
-readability-named-parameter,
-readability-qualified-auto,
-readability-uppercase-literal-suffix,
WarningsAsErrors: false
FormatStyle: file
CheckOptions:
- key: misc-non-private-member-variables-in-classes.IgnoreClassesWithAllMemberVariablesBeingPublic
value: '1'
- key: modernize-loop-convert.MaxCopySize
value: '16'
- key: modernize-loop-convert.MinConfidence
value: reasonable
- key: modernize-loop-convert.NamingStyle
value: CamelCase
- key: modernize-pass-by-value.IncludeStyle
value: llvm
- key: modernize-replace-auto-ptr.IncludeStyle
value: llvm
- key: modernize-use-default-member-init.UseAssignment
value: '1'
- key: modernize-use-emplace.IgnoreImplicitConstructors
value: '1'
- key: modernize-use-nullptr.NullMacros
value: 'NULL'
- key: readability-braces-around-statements.ShortStatementLines
value: '2'
...
14 changes: 14 additions & 0 deletions lk.code-workspace
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"folders": [
{
"path": "."
}
],
"settings": {
"editor.tabSize": 4,
"files.exclude": {
"**/.cache": true,
"**/.clangd": true
}
}
}

0 comments on commit 1f6119a

Please sign in to comment.