File tree Expand file tree Collapse file tree 2 files changed +45
-2
lines changed Expand file tree Collapse file tree 2 files changed +45
-2
lines changed Original file line number Diff line number Diff line change 1
1
.cache /
2
2
public /
3
3
node_modules /
4
- docs /sources /
5
4
docs /sources /get-started /run-cloud-tests-from-the-CLI.md
6
5
docs /sources /get-started /run-your-first-tests.md
7
6
CONTRIBUTING_FILE_FORMAT.md
8
7
src /data /markdown /docs /40 xk6-disruptor /01 Get started /01 First steps.md
9
- src /data /markdown /docs /40 xk6-disruptor /01 Get started /04 Expose Your Application.md
8
+ src /data /markdown /docs /40 xk6-disruptor /01 Get started /04 Expose Your Application.md
10
9
src /data /markdown /docs /40 xk6-disruptor /04 Examples /01 Inject Grpc faults into Service.md
11
10
src /data /markdown /docs /40 xk6-disruptor /04 Examples /02 Inject HTTP faults into Pod.md
12
11
src /data /markdown /docs /05 Examples /02 Tutorials /01 Get started with k6 /100 Test-for-functional-behavior.md
Original file line number Diff line number Diff line change
1
+ module . exports = {
2
+ root : true ,
3
+ env : {
4
+ es2017 : true ,
5
+ commonjs : true ,
6
+ } ,
7
+ parserOptions : {
8
+ ecmaVersion : '2017' ,
9
+ sourceType : 'module' ,
10
+ } ,
11
+ extends : [ 'plugin:mdx/recommended' , 'plugin:prettier/recommended' ] ,
12
+ plugins : [ 'markdown' ] ,
13
+ overrides : [
14
+ {
15
+ // Enable the Markdown processor for all .md files.
16
+ files : [ '**/*.md' ] ,
17
+ processor : 'markdown/markdown' ,
18
+ } ,
19
+ {
20
+ // Customize the configuration ESLint uses for ```js, ```javascript
21
+ files : [ '**/*.md/*.js' , '**/*.md/*.javascript' ] ,
22
+ rules : {
23
+ 'no-undef' : 'error' ,
24
+ 'no-else-return' : 'error' ,
25
+ 'no-extra-boolean-cast' : 'error' ,
26
+ 'no-duplicate-case' : 'error' ,
27
+ 'no-const-assign' : 'error' ,
28
+ 'no-dupe-args' : 'error' ,
29
+ 'no-dupe-else-if' : 'error' ,
30
+ 'no-var' : 'error' ,
31
+ 'use-isnan' : 'error' ,
32
+ 'func-style' : [ 'error' , 'declaration' , { allowArrowFunctions : true } ] ,
33
+ 'prefer-const' : 'error' ,
34
+ } ,
35
+ } ,
36
+ ] ,
37
+ globals : {
38
+ console : 'readonly' ,
39
+ __VU : 'readonly' ,
40
+ __ENV : 'readonly' ,
41
+ __ITER : 'readonly' ,
42
+ open : 'readonly' ,
43
+ } ,
44
+ } ;
You can’t perform that action at this time.
0 commit comments