setup linter
This commit is contained in:
parent
b9e3b5ca26
commit
dae66beb59
4 changed files with 26 additions and 5 deletions
|
@ -1,3 +1,3 @@
|
|||
{
|
||||
"extends": ["next", "prettier"]
|
||||
"extends": ["custom"]
|
||||
}
|
|
@ -1,3 +1,3 @@
|
|||
{
|
||||
"extends": ["next", "prettier"]
|
||||
"extends": ["custom"]
|
||||
}
|
||||
|
|
|
@ -4,7 +4,7 @@ export default function Document() {
|
|||
return (
|
||||
<Html>
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossOrigin="crossorigin" />
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" />
|
||||
<Head />
|
||||
<link
|
||||
href="https://fonts.googleapis.com/css2?family=Fira+Sans:wght@400;500;600;700;800&display=swap"
|
||||
|
|
25
turbo.json
25
turbo.json
|
@ -1,14 +1,35 @@
|
|||
{
|
||||
"$schema": "https://turbo.build/schema.json",
|
||||
"globalDependencies": [],
|
||||
"pipeline": {
|
||||
"build": {
|
||||
"outputs": [".next/**"]
|
||||
},
|
||||
"saleor-app-invoice#build": {
|
||||
"env": [
|
||||
"APL",
|
||||
"APP_DEBUG",
|
||||
"NODE_ENV",
|
||||
"SECRET_KEY",
|
||||
"VERCEL_URL",
|
||||
"PORT",
|
||||
"ALLOWED_DOMAIN_PATTERN",
|
||||
"TEMP_PDF_STORAGE_DIR",
|
||||
"SENTRY_AUTH_TOKEN",
|
||||
"SENTRY_PROJECT",
|
||||
"SENTRY_ORG",
|
||||
"REST_APL_TOKEN",
|
||||
"REST_APL_ENDPOINT",
|
||||
"NEXT_PUBLIC_SENTRY_DSN",
|
||||
"SENTRY_DSN"
|
||||
]
|
||||
},
|
||||
"saleor-app-slack#build": {
|
||||
"env": ["APL", "SENTRY_AUTH_TOKEN", "SENTRY_PROJECT", "SENTRY_ORG"]
|
||||
},
|
||||
"lint": {},
|
||||
"dev": {
|
||||
"cache": false,
|
||||
"persistent": true
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue