File tree 5 files changed +38
-1
lines changed
5 files changed +38
-1
lines changed Original file line number Diff line number Diff line change 6
6
- name : build
7
7
image : node:18
8
8
commands :
9
+ - brew install vale
9
10
- yarn
10
11
- yarn build
11
12
Original file line number Diff line number Diff line change
1
+ # See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2
+
3
+ # dependencies
4
+ /node_modules
5
+
6
+
7
+ # testing
8
+ /coverage
9
+
10
+ # production
11
+ /build
12
+
Original file line number Diff line number Diff line change
1
+ module . exports = {
2
+ "env" : {
3
+ "browser" : true ,
4
+ "es2021" : true
5
+ } ,
6
+ "extends" : [
7
+ "eslint:recommended" ,
8
+ "plugin:react/recommended"
9
+ ] ,
10
+ "overrides" : [
11
+ ] ,
12
+ "parserOptions" : {
13
+ "ecmaVersion" : "latest" ,
14
+ "sourceType" : "module"
15
+ } ,
16
+ "plugins" : [
17
+ "react"
18
+ ] ,
19
+ "rules" : {
20
+ }
21
+ }
Original file line number Diff line number Diff line change 13
13
"serve" : " docusaurus serve" ,
14
14
"write-translations" : " docusaurus write-translations" ,
15
15
"write-heading-ids" : " docusaurus write-heading-ids" ,
16
+ "lint:eslint" : " eslint ./src/**/*.js*" ,
17
+ "lint:vale" : " vale tutorials/**/**.md* docs/**/**.md*" ,
18
+ "lint:ci" : " yarn lint:eslint && yarn lint:vale" ,
16
19
"typecheck" : " tsc"
17
20
},
18
21
"dependencies" : {
Original file line number Diff line number Diff line change 1
- import React from "react" ;
1
+ // import React from "react";
2
2
// Import the original mapper
3
3
import MDXComponents from "@theme-original/MDXComponents" ;
4
4
import DocVideo from "@site/src/components/DocVideo" ;
You can’t perform that action at this time.
0 commit comments