Skip to content

Commit 9ae55da

Browse files
author
Kevin Martin
committed
added editorconfig
1 parent 798f544 commit 9ae55da

File tree

2 files changed

+19
-4
lines changed

2 files changed

+19
-4
lines changed

.editorconfig

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# http://editorconfig.org
2+
root = true
3+
4+
[*]
5+
indent_style = space
6+
indent_size = 4
7+
end_of_line = crlf
8+
charset = utf-8
9+
10+
trim_trailing_whitespace = true
11+
insert_final_newline = true
12+
13+
[*.md]
14+
trim_trailing_whitespace = false
15+
insert_final_newline = false

sp_Develop.sql

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/**********************************************************************************************************************
1+
/**********************************************************************************************************************
22
** MIT License
33
**
44
** Copyright for portions of sp_Develop are held by Brent Ozar Unlimited as part of project
@@ -498,7 +498,7 @@ RETURN 0;
498498
PRIORITY = 201 /* Use the same Priority for Findings Group and it will ORDER BY in the results */
499499
,FindingsGroup = 'Naming Conventions'
500500
,Finding = 'Not Naming Foreign Key Column the Same as Parent Table'
501-
,URL = @URLBase + 'not-naming-foreign-key-column-the-same-as-parent-table'
501+
,URL = @URLBase + 'not-naming-foreign-key-column-the-same-as-parent-table'
502502
,Details = N'REMEMBER: Name the foreign key column the same as the parent table.';
503503

504504
/**********************************************************************************************************************
@@ -638,7 +638,7 @@ RETURN 0;
638638
PRIORITY = 203 /* Use the same Priority for Findings Group and it will ORDER BY in the results */
639639
,FindingsGroup = 'SQL Code Development'
640640
,Finding = 'Using Old Sybase JOIN Syntax'
641-
,URL = @URLBase = 'using-old-sybase-join-syntax'
641+
,URL = @URLBase + 'using-old-sybase-join-syntax'
642642
,Details = N'REMEMBER: Use the ANSI standards "<>, >=" & "INNER JOIN" instead of the deprecated Sybase join syntax: "=*, *=" & "JOIN".';
643643

644644
END;
@@ -2024,4 +2024,4 @@ RETURN 0;
20242024

20252025
DROP TABLE #DeveloperResults;
20262026

2027-
END;
2027+
END;

0 commit comments

Comments
 (0)