-
-
Notifications
You must be signed in to change notification settings - Fork 679
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore: update readme #2942
chore: update readme #2942
Conversation
✅ Deploy Preview for asyncapi-website ready!Built without sensitive environment variables
To edit notification comments on pull requests, go to your Netlify site configuration. |
``` | ||
npm run lint:fix | ||
``` | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add an extra check regarding lint mdx as well.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should I update lint commands in package.json as given below:
"lint": "next lint && npx remark ./**/*.mdx",
"lint:fix": "next lint --fix && npx remark ./**/*.mdx"
Or should I add new commands for this:
"lint:mdx": "npx remark ./**/*.mdx"
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There is already a command as lint:mdx
inside package.json.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
README.md
Outdated
├── .all-contributorsrc # File having details of all contributors | ||
├── .dockerignore # Docker ignore file | ||
├── .editorconfig # Editor configuration file | ||
├── .eslintrc # ESLint configuration file | ||
├── .gitignore # Git ignore file | ||
├── .gitpod.yml # Gitpod configuration file | ||
├── .remarkrc # Configuration file for remark | ||
├── ADDING_TRANSLATIONS.md # Guide on how to add translations | ||
├── CODE_OF_CONDUCT.md # Code of conduct | ||
├── Contributing.md # Contributing guidelines | ||
├── dashboard.json # Data for dashboard page | ||
├── Dockerfile # Dockerfile for building the website | ||
├── LICENSE # License file | ||
├── mlc_config.json # Configuration file for markdown-link-checker | ||
├── netlify.toml # Netlify configuration file | ||
├── next-env.d.ts # Next.js environment types | ||
├── next-i18next-static-site.config.js # Next.js i18next configuration file | ||
├── next.config.mjs # Next.js configuration file | ||
├── package-lock.json # NPM package lock file | ||
├── package.json # NPM package configuration file | ||
├── postcss.config.js # PostCSS configuration file | ||
├── README.md # Project's README file | ||
├── roadmap.json # Data for roadmap page | ||
├── tailwind.config.js # TailwindCSS configuration file | ||
└── tsconfig.json # TypeScript configuration file |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add only about tailwind.config.js
, tsconfig.json
, next.config.mjs
, README.md
files.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
/rtm |
Description
Update the following in the readme:
Related issue(s)
#2636