Skip to content

Commit

Permalink
build: fix lint issues introduced by #25285 (#25290)
Browse files Browse the repository at this point in the history
  • Loading branch information
mmalerba committed Jul 15, 2022
1 parent 14958df commit a378147
Show file tree
Hide file tree
Showing 9 changed files with 21 additions and 73 deletions.
18 changes: 4 additions & 14 deletions integration/mdc-migration/golden/angular.json
Expand Up @@ -26,13 +26,8 @@
"polyfills": "src/polyfills.ts",
"tsConfig": "tsconfig.app.json",
"inlineStyleLanguage": "scss",
"assets": [
"src/favicon.ico",
"src/assets"
],
"styles": [
"src/styles.scss"
],
"assets": ["src/favicon.ico", "src/assets"],
"styles": ["src/styles.scss"],
"scripts": []
},
"configurations": {
Expand Down Expand Up @@ -94,13 +89,8 @@
"tsConfig": "tsconfig.spec.json",
"karmaConfig": "karma.conf.js",
"inlineStyleLanguage": "scss",
"assets": [
"src/favicon.ico",
"src/assets"
],
"styles": [
"src/styles.scss"
],
"assets": ["src/favicon.ico", "src/assets"],
"styles": ["src/styles.scss"],
"scripts": [],
"watch": false
}
Expand Down
9 changes: 2 additions & 7 deletions integration/mdc-migration/golden/tsconfig.app.json
Expand Up @@ -5,11 +5,6 @@
"outDir": "./out-tsc/app",
"types": []
},
"files": [
"src/main.ts",
"src/polyfills.ts"
],
"include": [
"src/**/*.d.ts"
]
"files": ["src/main.ts", "src/polyfills.ts"],
"include": ["src/**/*.d.ts"]
}
5 changes: 1 addition & 4 deletions integration/mdc-migration/golden/tsconfig.json
Expand Up @@ -18,10 +18,7 @@
"importHelpers": true,
"target": "es2017",
"module": "es2020",
"lib": [
"es2018",
"dom"
]
"lib": ["es2018", "dom"]
},
"angularCompilerOptions": {
"enableI18nLegacyMessageIdFormat": false,
Expand Down
14 changes: 3 additions & 11 deletions integration/mdc-migration/golden/tsconfig.spec.json
Expand Up @@ -3,16 +3,8 @@
"extends": "./tsconfig.json",
"compilerOptions": {
"outDir": "./out-tsc/spec",
"types": [
"jasmine"
]
"types": ["jasmine"]
},
"files": [
"src/test.ts",
"src/polyfills.ts"
],
"include": [
"src/**/*.spec.ts",
"src/**/*.d.ts"
]
"files": ["src/test.ts", "src/polyfills.ts"],
"include": ["src/**/*.spec.ts", "src/**/*.d.ts"]
}
18 changes: 4 additions & 14 deletions integration/mdc-migration/sample-project/angular.json
Expand Up @@ -26,13 +26,8 @@
"polyfills": "src/polyfills.ts",
"tsConfig": "tsconfig.app.json",
"inlineStyleLanguage": "scss",
"assets": [
"src/favicon.ico",
"src/assets"
],
"styles": [
"src/styles.scss"
],
"assets": ["src/favicon.ico", "src/assets"],
"styles": ["src/styles.scss"],
"scripts": []
},
"configurations": {
Expand Down Expand Up @@ -94,13 +89,8 @@
"tsConfig": "tsconfig.spec.json",
"karmaConfig": "karma.conf.js",
"inlineStyleLanguage": "scss",
"assets": [
"src/favicon.ico",
"src/assets"
],
"styles": [
"src/styles.scss"
],
"assets": ["src/favicon.ico", "src/assets"],
"styles": ["src/styles.scss"],
"scripts": [],
"watch": false
}
Expand Down
2 changes: 1 addition & 1 deletion integration/mdc-migration/sample-project/package.json
Expand Up @@ -39,4 +39,4 @@
"karma-jasmine-html-reporter": "~1.7.0",
"typescript": "~4.4.2"
}
}
}
9 changes: 2 additions & 7 deletions integration/mdc-migration/sample-project/tsconfig.app.json
Expand Up @@ -5,11 +5,6 @@
"outDir": "./out-tsc/app",
"types": []
},
"files": [
"src/main.ts",
"src/polyfills.ts"
],
"include": [
"src/**/*.d.ts"
]
"files": ["src/main.ts", "src/polyfills.ts"],
"include": ["src/**/*.d.ts"]
}
5 changes: 1 addition & 4 deletions integration/mdc-migration/sample-project/tsconfig.json
Expand Up @@ -18,10 +18,7 @@
"importHelpers": true,
"target": "es2017",
"module": "es2020",
"lib": [
"es2018",
"dom"
]
"lib": ["es2018", "dom"]
},
"angularCompilerOptions": {
"enableI18nLegacyMessageIdFormat": false,
Expand Down
14 changes: 3 additions & 11 deletions integration/mdc-migration/sample-project/tsconfig.spec.json
Expand Up @@ -3,16 +3,8 @@
"extends": "./tsconfig.json",
"compilerOptions": {
"outDir": "./out-tsc/spec",
"types": [
"jasmine"
]
"types": ["jasmine"]
},
"files": [
"src/test.ts",
"src/polyfills.ts"
],
"include": [
"src/**/*.spec.ts",
"src/**/*.d.ts"
]
"files": ["src/test.ts", "src/polyfills.ts"],
"include": ["src/**/*.spec.ts", "src/**/*.d.ts"]
}

0 comments on commit a378147

Please sign in to comment.