Add markdownlint to Makefile
We're currently running markdownlint in CI and we didn't have a target for that in our makefile. Adding that to prevent rejected PR's due to markdown linting errors Signed-off-by: Marcos Lilljedahl <marcosnils@gmail.com>
This commit is contained in:
@@ -13,9 +13,9 @@ Within 5 minutes, you will have a local CI/CD loop and run your first test & bui
|
||||
import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem';
|
||||
|
||||
<Tabs defaultValue={
|
||||
window.navigator.userAgent.indexOf('Linux') != -1 ? 'linux':
|
||||
window.navigator.userAgent.indexOf('Win') != -1 ? 'windows':
|
||||
'macos'}
|
||||
window.navigator.userAgent.indexOf('Linux') != -1 ? 'linux':
|
||||
window.navigator.userAgent.indexOf('Win') != -1 ? 'windows':
|
||||
'macos'}
|
||||
groupId="os"
|
||||
values={[
|
||||
{label: 'macOS', value: 'macos'}, {label: 'Linux', value: 'linux'}, {label: 'Windows', value: 'windows'},
|
||||
|
Reference in New Issue
Block a user