.gitattributes line-endings

This commit is contained in:
Noah Santschi-Cooney 2021-02-01 02:57:06 +00:00
parent 7d5a46470b
commit a4d1147606
3 changed files with 5 additions and 4 deletions

1
.gitattributes vendored Normal file
View file

@ -0,0 +1 @@
* text eol=lf

View file

@ -18,6 +18,6 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Build
run: cargo build --verbose
run: cargo build
- name: Run tests
run: cargo test --verbose
run: cargo test

View file

@ -8,10 +8,10 @@ use serde_json::Value;
use url_norm::FromUrl;
use walkdir::WalkDir;
use std::{cell::RefCell, ffi::OsString, path::{Path, PathBuf}, str::FromStr};
use std::{cell::RefCell, path::PathBuf, str::FromStr};
use std::collections::{HashMap, HashSet};
use std::collections::hash_map::RandomState;
use std::convert::{TryFrom, TryInto};
use std::convert::TryFrom;
use std::fmt::{Display, Formatter, Debug};
use std::io::{stdin, stdout, BufRead, BufReader};
use std::rc::Rc;