-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path.tsqllintrc
36 lines (36 loc) · 1.01 KB
/
.tsqllintrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"rules": {
"case-sensitive-variables": "error",
"conditional-begin-end": "error",
"count-star": "off",
"cross-database-transaction": "error",
"data-compression": "off",
"data-type-length": "error",
"delete-where": "error",
"disallow-cursors": "error",
"full-text": "off",
"information-schema": "error",
"keyword-capitalization": "error",
"linked-server": "error",
"multi-table-alias": "error",
"named-constraint": "error",
"non-sargable": "error",
"object-property": "error",
"print-statement": "off",
"schema-qualify": "error",
"select-star": "error",
"semicolon-termination": "error",
"set-ansi": "off",
"set-nocount": "off",
"set-quoted-identifier": "off",
"set-transaction-isolation-level": "off",
"set-variable": "off",
"update-where": "error",
"upper-lower": "error",
"unicode-string": "error"
},
"compatability-level": 140,
"plugins": {
"sample-plugin":".github/tsqllint/tsqllint-plugins.dll"
}
}