File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -84,7 +84,7 @@ impl<'a> Context<'a> {
84
84
Ok ( Context {
85
85
globals : String :: new ( ) ,
86
86
imports_post : String :: new ( ) ,
87
- typescript : "/* tslint:disable */\n " . to_string ( ) ,
87
+ typescript : "/* tslint:disable */\n /* eslint-disable */ \n " . to_string ( ) ,
88
88
exposed_globals : Some ( Default :: default ( ) ) ,
89
89
imported_names : Default :: default ( ) ,
90
90
js_imports : Default :: default ( ) ,
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ impl Config {
45
45
}
46
46
47
47
pub fn typescript ( module : & Module ) -> Result < String , Error > {
48
- let mut exports = format ! ( "/* tslint:disable */\n " ) ;
48
+ let mut exports = format ! ( "/* tslint:disable */\n /* eslint-disable */ \n " ) ;
49
49
50
50
for entry in module. exports . iter ( ) {
51
51
let id = match entry. item {
You can’t perform that action at this time.
0 commit comments