CTFE/miri (the code in src/librustc/mir/interpret and src/librustc_mir/interpret) is currently exempt from tidy:
|
"src/librustc/mir/interpret", |
|
"src/librustc_mir/interpret", |
That should not be hard to fix, it is mostly a matter of adding a license header everywhere and breaking long lines into less than 100 characters. Basically, start by removing the above two lines from tidy, and then ./x.py --stage 1 test tidy will tell you all that needs fixing.
CTFE/miri (the code in
src/librustc/mir/interpretandsrc/librustc_mir/interpret) is currently exempt from tidy:rust/src/tools/tidy/src/lib.rs
Lines 79 to 80 in 24bc544
That should not be hard to fix, it is mostly a matter of adding a license header everywhere and breaking long lines into less than 100 characters. Basically, start by removing the above two lines from tidy, and then
./x.py --stage 1 test tidywill tell you all that needs fixing.