prettier fix
This commit is contained in:
parent
eaf1bbc291
commit
e7056f9eb1
@ -3,9 +3,16 @@ module.exports = {
|
||||
bracketSameLine: true,
|
||||
singleQuote: true,
|
||||
jsxSingleQuote: true,
|
||||
trailingComma: "es5",
|
||||
trailingComma: 'es5',
|
||||
semi: true,
|
||||
printWidth: 110,
|
||||
arrowParens: "always",
|
||||
importOrderSeparation: true,
|
||||
arrowParens: 'always',
|
||||
overrides: [
|
||||
{
|
||||
files: ['tsconfig.json', 'jsconfig.json'],
|
||||
options: {
|
||||
parser: 'jsonc',
|
||||
},
|
||||
},
|
||||
],
|
||||
};
|
||||
|
||||
3
.vscode/settings.json
vendored
3
.vscode/settings.json
vendored
@ -1,3 +0,0 @@
|
||||
{
|
||||
"editor.formatOnSave": true
|
||||
}
|
||||
12
app.json
12
app.json
@ -3,15 +3,7 @@
|
||||
"description": "Mock SAML is a free SAML 2.0 Identity Provider for testing SAML SSO integrations.",
|
||||
"repository": "https://github.com/boxyhq/mock-saml",
|
||||
"logo": "https://boxyhq.com/img/logo.png",
|
||||
"keywords": [
|
||||
"saml",
|
||||
"saml2",
|
||||
"saml-idp",
|
||||
"mock-saml-idp",
|
||||
"test-saml",
|
||||
"saml-testing",
|
||||
"fake-saml-idp"
|
||||
],
|
||||
"keywords": ["saml", "saml2", "saml-idp", "mock-saml-idp", "test-saml", "saml-testing", "fake-saml-idp"],
|
||||
"env": {
|
||||
"APP_URL": {
|
||||
"description": "Public root URL of the Mock SAML installation. Replace <HEROKU_APP_NAME> with 'App name' from above.",
|
||||
@ -33,4 +25,4 @@
|
||||
}
|
||||
},
|
||||
"success_url": "/"
|
||||
}
|
||||
}
|
||||
|
||||
@ -9,6 +9,8 @@
|
||||
"build": "next build",
|
||||
"start": "next start -p 4000",
|
||||
"lint": "next lint",
|
||||
"check-format": "prettier --check .",
|
||||
"format": "prettier --write .",
|
||||
"release": "git checkout release && git merge origin/main && release-it && git checkout main && git merge origin/release && git push origin main"
|
||||
},
|
||||
"dependencies": {
|
||||
|
||||
@ -3,4 +3,4 @@ module.exports = {
|
||||
tailwindcss: {},
|
||||
autoprefixer: {},
|
||||
},
|
||||
}
|
||||
};
|
||||
|
||||
@ -14,8 +14,8 @@
|
||||
"isolatedModules": true,
|
||||
"jsx": "preserve",
|
||||
"incremental": true,
|
||||
"baseUrl": "."
|
||||
"baseUrl": ".",
|
||||
},
|
||||
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
|
||||
"exclude": ["node_modules"]
|
||||
"exclude": ["node_modules"],
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user