Skip to content

Commit

Permalink
fix: regression because of merge queue in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
ematipico committed Mar 1, 2024
1 parent 4c92db2 commit d555d91
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
4 changes: 1 addition & 3 deletions crates/biome_service/src/workspace/server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -110,9 +110,7 @@ impl WorkspaceServer {
.get(path)
.map(|doc| doc.file_source_index)
.and_then(|index| self.file_sources.read().unwrap().get_index(index).copied())
.unwrap_or(
DocumentFileSource::from_path(path)
)
.unwrap_or(DocumentFileSource::from_path(path))
}

/// Return an error factory function for unsupported features at a given path
Expand Down
4 changes: 2 additions & 2 deletions packages/tailwindcss-config-analyzer/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"jsx": "react-jsx",
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"allowJs": true
"allowJs": true,
},
"include": ["src/**/*"]
"include": ["src/**/*"],
}

0 comments on commit d555d91

Please sign in to comment.