mirror of
https://github.com/servo/servo.git
synced 2025-08-02 20:20:14 +01:00
Strict import formatting (grouping and granularity) (#30325)
* strict imports formatting * Reformat all imports
This commit is contained in:
parent
413da4ca69
commit
aad2dccc9c
802 changed files with 6861 additions and 6395 deletions
|
@ -4,14 +4,18 @@
|
|||
|
||||
#![feature(proc_macro_diagnostic)]
|
||||
|
||||
use std::collections::{hash_map, HashMap};
|
||||
use std::fmt::Write;
|
||||
use std::iter;
|
||||
|
||||
use itertools::Itertools;
|
||||
use proc_macro2::{Span, TokenStream};
|
||||
use quote::*;
|
||||
use std::collections::{hash_map, HashMap};
|
||||
use std::{fmt::Write, iter};
|
||||
use syn::parse::Result;
|
||||
use syn::spanned::Spanned;
|
||||
use syn::{
|
||||
parse::Result, parse_macro_input, spanned::Spanned, Attribute, Ident, Lit, LitStr, Meta,
|
||||
MetaList, MetaNameValue, NestedMeta, Path,
|
||||
parse_macro_input, Attribute, Ident, Lit, LitStr, Meta, MetaList, MetaNameValue, NestedMeta,
|
||||
Path,
|
||||
};
|
||||
|
||||
mod parse;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue