mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2025-01-31 17:50:40 +00:00
updated config
This commit is contained in:
parent
86d012ea33
commit
703ca85f0a
3 changed files with 27 additions and 22 deletions
3
.fvmrc
Normal file
3
.fvmrc
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
{
|
||||||
|
"flutter": "3.27.1"
|
||||||
|
}
|
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -5,9 +5,11 @@
|
||||||
*.swp
|
*.swp
|
||||||
.DS_Store
|
.DS_Store
|
||||||
.atom/
|
.atom/
|
||||||
|
.build/
|
||||||
.buildlog/
|
.buildlog/
|
||||||
.history
|
.history
|
||||||
.svn/
|
.svn/
|
||||||
|
.swiftpm/
|
||||||
migrate_working_dir/
|
migrate_working_dir/
|
||||||
|
|
||||||
# IntelliJ related
|
# IntelliJ related
|
||||||
|
|
44
.vscode/settings.json
vendored
44
.vscode/settings.json
vendored
|
@ -1,25 +1,25 @@
|
||||||
{
|
{
|
||||||
"task.slowProviderWarning": true,
|
"task.slowProviderWarning": true,
|
||||||
"dart.flutterSdkPath": ".fvm/flutter_sdk",
|
"dart.flutterSdkPath": ".fvm/versions/3.27.1",
|
||||||
"search.exclude": {
|
"search.exclude": {
|
||||||
"**/.fvm": true
|
"**/.fvm": true
|
||||||
},
|
},
|
||||||
"files.watcherExclude": {
|
"files.watcherExclude": {
|
||||||
"**/.fvm": true
|
"**/.fvm": true
|
||||||
},
|
},
|
||||||
"dart.lineLength": 120,
|
"dart.lineLength": 120,
|
||||||
"[dart]": {
|
"[dart]": {
|
||||||
"editor.rulers": [
|
"editor.rulers": [
|
||||||
120,
|
120
|
||||||
],
|
|
||||||
"editor.selectionHighlight": true,
|
|
||||||
"editor.suggest.snippetsPreventQuickSuggestions": false,
|
|
||||||
"editor.suggestSelection": "first",
|
|
||||||
"editor.tabCompletion": "onlySnippets",
|
|
||||||
"editor.wordBasedSuggestions": "off"
|
|
||||||
},
|
|
||||||
"dart.doNotFormat": [
|
|
||||||
"**/generated/**",
|
|
||||||
"lib/data/**"
|
|
||||||
],
|
],
|
||||||
|
"editor.selectionHighlight": true,
|
||||||
|
"editor.suggest.snippetsPreventQuickSuggestions": false,
|
||||||
|
"editor.suggestSelection": "first",
|
||||||
|
"editor.tabCompletion": "onlySnippets",
|
||||||
|
"editor.wordBasedSuggestions": "off"
|
||||||
|
},
|
||||||
|
"dart.doNotFormat": [
|
||||||
|
"**/generated/**",
|
||||||
|
"lib/data/**"
|
||||||
|
]
|
||||||
}
|
}
|
Loading…
Reference in a new issue