zed: Remove unnecessary #[allow(non_snake_case)] attribute (#21030)

This PR removes the `#[allow(non_snake_case)]` attribute from the `zed`
crate, as it wasn't actually doing anything.

Release Notes:

- N/A
This commit is contained in:
Marshall Bowers 2024-11-21 18:47:44 -05:00 committed by GitHub
parent e0245b3f30
commit 6c470748ac
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,5 +1,3 @@
// Allow binary to be called Zed for a nice application menu when running executable directly
#![allow(non_snake_case)]
// Disable command line from opening on release mode
#![cfg_attr(not(debug_assertions), windows_subsystem = "windows")]