This repository was archived by the owner on Aug 14, 2020. It is now read-only.
File tree Expand file tree Collapse file tree 6 files changed +2369
-9
lines changed Expand file tree Collapse file tree 6 files changed +2369
-9
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ "env": {
3
+ "commonjs": true,
4
+ "es6": true,
5
+ "node": true
6
+ },
7
+ "extends": "eslint:recommended",
8
+ "globals": {
9
+ "Atomics": "readonly",
10
+ "SharedArrayBuffer": "readonly"
11
+ },
12
+ "parserOptions": {
13
+ "ecmaVersion": 2018
14
+ },
15
+ "rules": {
16
+ "no-console": "off",
17
+ "no-empty": [2, { "allowEmptyCatch": true }]
18
+ }
19
+ }
Original file line number Diff line number Diff line change
1
+ {
2
+ "trailingComma": "es5",
3
+ "printWidth": 100,
4
+ "tabWidth": 2,
5
+ "semi": false,
6
+ "singleQuote": true
7
+ }
Original file line number Diff line number Diff line change 1
- name : " Scope for Javascript"
2
- author : " Undefined Labs"
3
- description : " Automatically instruments and runs your tests using the Scope Javascript agent"
1
+ name : ' Scope for Javascript'
2
+ author : ' Undefined Labs'
3
+ description : ' Automatically instruments and runs your tests using the Scope Javascript agent'
4
4
inputs :
5
5
command : # command to run your tests
6
- description : " Command to run your tests"
6
+ description : ' Command to run your tests'
7
7
required : false
8
8
dsn : # scope dsn
9
- description : " Scope DSN"
9
+ description : ' Scope DSN'
10
10
required : true
11
11
runs :
12
- using : " node12"
13
- main : " dist/ index.js"
12
+ using : ' node12'
13
+ main : ' index.js'
14
14
branding :
15
- icon : " check-square"
16
- color : " purple"
15
+ icon : ' check-square'
16
+ color : ' purple'
You can’t perform that action at this time.
0 commit comments