-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for reading
air.toml
in the CLI and LSP (#122)
* Add support for reading `air.toml` in the CLI and LSP * Split discovery from resolver, make workspace open/close handle their own errors * Use fixed name for toml watcher Technically you can use this to dynamically unregister at any time * Remove empty line * Fix small documentation issue with `crlf` * Ensure `document_settings()` can determine if fallback settings are in use or not * Use more obvious enum variant names * Add in some copyright headers * One more header * Rename `LineLength` to `LineWidth` to better match `IndentWidth` * Nest `line_width` and `indent_width` under `[format]`
- Loading branch information
1 parent
f41a27e
commit afa958f
Showing
38 changed files
with
1,721 additions
and
168 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
mod magic_line_break; | ||
|
||
pub use magic_line_break::*; |
Oops, something went wrong.