prettier fix

This commit is contained in:
Deepak Prabhakara 2024-02-04 15:38:33 +00:00
parent eaf1bbc291
commit e7056f9eb1
6 changed files with 17 additions and 19 deletions

View File

@ -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',
},
},
],
};

View File

@ -1,3 +0,0 @@
{
"editor.formatOnSave": true
}

View File

@ -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.",

View File

@ -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": {

View File

@ -3,4 +3,4 @@ module.exports = {
tailwindcss: {},
autoprefixer: {},
},
}
};

View File

@ -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"],
}