-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixes some setup issues, adds uninstall devguard documentation
- Loading branch information
Showing
11 changed files
with
779 additions
and
237 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
{ | ||
"extends": "next/core-web-vitals", | ||
"extends":["next/core-web-vitals", "prettier"], | ||
"plugins": ["prettier"], | ||
"rules": { | ||
"prettier/prettier": "error" | ||
"prettier/prettier": "error", | ||
"import/no-anonymous-default-export": "off" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
module.exports = { | ||
singleQuote: true, | ||
semi: false, | ||
plugins: [import('prettier-plugin-tailwindcss')], | ||
singleQuote: true, | ||
semi: false, | ||
tabWidth: 4, | ||
useTabs: false, | ||
plugins: [import('prettier-plugin-tailwindcss')], | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
export default { | ||
index: { title: 'Introduction' }, | ||
basics: { title: 'Basics' }, | ||
concepts: { title: 'Concepts' }, | ||
guides: { title: 'Guides' }, | ||
contributing: { title: 'Contributing' }, | ||
about: { title: 'About' }, | ||
'about-l3': { | ||
title: 'About L3montree ↗', | ||
type: 'page', | ||
href: 'https://l3montree.com/', | ||
newWindow: true, | ||
}, | ||
contact: { | ||
title: 'Contact ↗', | ||
type: 'page', | ||
href: 'mailto:[email protected]', | ||
}, | ||
index: { title: 'Introduction' }, | ||
basics: { title: 'Basics' }, | ||
concepts: { title: 'Concepts' }, | ||
guides: { title: 'Guides' }, | ||
contributing: { title: 'Contributing' }, | ||
about: { title: 'About' }, | ||
'about-l3': { | ||
title: 'About L3montree ↗', | ||
type: 'page', | ||
href: 'https://l3montree.com/', | ||
newWindow: true, | ||
}, | ||
contact: { | ||
title: 'Contact ↗', | ||
type: 'page', | ||
href: 'mailto:[email protected]', | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
export default { | ||
index: { title: 'Overview' }, | ||
'local-quickstart': { title: 'Local Quickstart' }, | ||
index: { title: 'Overview' }, | ||
'local-quickstart': { title: 'Local Quickstart' }, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
export default { | ||
'code-of-conduct': { title: 'Code of Conduct' }, | ||
roadmap: { title: 'Roadmap' }, | ||
'code-of-conduct': { title: 'Code of Conduct' }, | ||
roadmap: { title: 'Roadmap' }, | ||
} |
Oops, something went wrong.