Explorar el Código

Disable linting for generated files

Johannes Hofmann hace 7 años
padre
commit
3d69b061b1
Se han modificado 1 ficheros con 2 adiciones y 0 borrados
  1. 2
    0
      src/context.rs

+ 2
- 0
src/context.rs Ver fichero

@@ -1,6 +1,8 @@
1 1
 use glutin;
2 2
 
3 3
 pub(crate) mod gl {
4
+    #![allow(unknown_lints)]
5
+    #![allow(clippy)]
4 6
     pub use self::Gles2 as Gl;
5 7
     include!(concat!(env!("OUT_DIR"), "/gles_bindings.rs"));
6 8
 }