Fix/linting * fix import issues and add lint check no-extraneous-dependencies * fix use type HotelType instead of string Approved-by: Anton Gunnarsson
11 lines
195 B
JavaScript
11 lines
195 B
JavaScript
const config = {
|
|
"*.{ts,tsx}": [
|
|
() => "yarn lint",
|
|
() => "tsc -p tsconfig.json --noEmit",
|
|
"prettier --write",
|
|
],
|
|
"*.{js,cjs,mjs}": "prettier --write",
|
|
}
|
|
|
|
export default config
|