Skip to content

Commit a20fa8a

Browse files
author
Raymond Feng
committed
Refactor base and sql connector
1 parent e11c1c9 commit a20fa8a

13 files changed

+2408
-247
lines changed

.jshintrc

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
{
2-
"node": true,
3-
"browser": true,
4-
"camelcase" : true,
5-
"eqnull" : true,
6-
"indent": 2,
7-
"undef": true,
8-
"unused": true,
9-
"quotmark": "single",
10-
"maxlen": 90,
11-
"trailing": true,
12-
"newcap": true,
13-
"nonew": true,
14-
"sub": true,
15-
"globals": {
16-
"describe": true,
17-
"it": true,
18-
"before": true,
19-
"beforeEach": true,
20-
"after": true,
21-
"afterEach": true
22-
}
2+
"node": true,
3+
"browser": true,
4+
"camelcase": true,
5+
"eqnull": true,
6+
"indent": 2,
7+
"undef": true,
8+
"unused": "vars",
9+
"quotmark": "true",
10+
"maxlen": 110,
11+
"trailing": true,
12+
"newcap": true,
13+
"nonew": true,
14+
"sub": true,
15+
"globals": {
16+
"describe": true,
17+
"it": true,
18+
"before": true,
19+
"beforeEach": true,
20+
"after": true,
21+
"afterEach": true
22+
}
2323
}

docs.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"content": [
3+
{
4+
"title": "Build a SQL connector",
5+
"depth": 2
6+
},
7+
"docs/sql-connector.md",
8+
{
9+
"title": "Base Connector",
10+
"depth": 2
11+
},
12+
"lib/connector.js",
13+
{
14+
"title": "SQL Connector",
15+
"depth": 2
16+
},
17+
"lib/sql.js",
18+
"lib/parameterized-sql.js"
19+
],
20+
"codeSectionDepth": 3
21+
}
22+

docs/connector-architecture.png

113 KB
Loading

docs/crud-connector.png

105 KB
Loading

0 commit comments

Comments
 (0)