Skip to content

Commit 5c8b5cf

Browse files
committed
documentation and linting clean up
1 parent ffc33ff commit 5c8b5cf

File tree

11 files changed

+184
-51
lines changed

11 files changed

+184
-51
lines changed

.eslintrc.json

Lines changed: 20 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,21 @@
11
{
2-
"env": {
3-
"commonjs": false,
4-
"es6": true,
5-
"node": true,
6-
"mocha": true
7-
},
8-
"extends": "eslint:recommended",
9-
"globals": {
10-
"Atomics": "readonly",
11-
"SharedArrayBuffer": "readonly"
12-
},
13-
"parserOptions": {
14-
"ecmaVersion": 2022,
15-
"sourceType": "module"
16-
},
17-
"rules": {
18-
}
19-
}
2+
"env": {
3+
"commonjs": false,
4+
"es6": true,
5+
"node": true,
6+
"mocha": true
7+
},
8+
"extends": [
9+
"eslint:recommended",
10+
"plugin:@sap/cds/recommended"
11+
],
12+
"globals": {
13+
"Atomics": "readonly",
14+
"SharedArrayBuffer": "readonly"
15+
},
16+
"parserOptions": {
17+
"ecmaVersion": 2022,
18+
"sourceType": "module"
19+
},
20+
"rules": {}
21+
}

bin/tables.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
// @ts-check
2-
// @ts-nocheck
32
import * as base from '../utils/base.js'
43
import dbClientClass from "../utils/database/index.js"
54

bin/tablesPG.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
/* eslint-disable no-undef */
2-
// @ts-nocheck
1+
// @ts-check
32
import * as base from '../utils/base.js'
43
const tables = await import("./tables.js")
54

bin/tablesSQLite.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
/* eslint-disable no-undef */
2-
// @ts-nocheck
1+
// @ts-check
32
import * as base from '../utils/base.js'
43
const tables = await import("./tables.js")
54

0 commit comments

Comments
 (0)