Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update .vscode cmake.sourceDirectory #1521

Merged
merged 2 commits into from
Feb 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 3 additions & 6 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
{
"C_Cpp.default.configurationProvider": "ms-vscode.cmake-tools",
"search.exclude": {
"flutter/realm_flutter/ios/src/**": true,
"flutter/realm_flutter/lib/**": true,
"flutter/realm_flutter/test/**": true
},
"search.exclude": {},
"dart.lineLength": 160,
"cSpell.words": [
"apikey",
Expand Down Expand Up @@ -164,5 +160,6 @@
"__split_buffer": "cpp",
"__tuple": "cpp",
"__verbose_abort": "cpp"
}
},
"cmake.sourceDirectory": "${workspaceFolder}/packages/realm_dart"
}
1 change: 1 addition & 0 deletions analysis_options.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ linter:
rules:
avoid_relative_lib_imports: false
package_api_docs: true
dangling_library_doc_comments: false
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I prefer that we don't disable recommended lints, but let us keep it for now, and fix the code later.


# For more information about the core and recommended set of lints, see
# https://dart.dev/go/core-lints
Expand Down
1 change: 0 additions & 1 deletion packages/realm_generator/lib/src/field_element_ex.dart
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
//
////////////////////////////////////////////////////////////////////////////////

import 'package:analyzer/dart/ast/ast.dart';
import 'package:analyzer/src/dart/ast/ast.dart';
import 'package:analyzer/dart/element/element.dart';
import 'package:analyzer/dart/element/type.dart';
Expand Down
Loading