Skip to content

Commit d4ca101

Browse files
committed
fix linting suggestions
1 parent 715fda2 commit d4ca101

File tree

5 files changed

+19
-8
lines changed

5 files changed

+19
-8
lines changed

.vscode/settings.json

+10-1
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,17 @@
1111
"Balsamiq",
1212
"Bitbucket",
1313
"CHHS",
14+
"CTEs",
1415
"Citrix",
1516
"EBRS",
1617
"EDRS",
1718
"Extranet",
19+
"FDRS",
1820
"FEDRS",
1921
"FOUC",
22+
"Fira",
2023
"Frida",
24+
"Fullname",
2125
"Gruber",
2226
"HHLPSS",
2327
"JAMstack",
@@ -41,13 +45,16 @@
4145
"SSRS",
4246
"Sharepoint",
4347
"VTHR",
48+
"WOFF",
4449
"ahsfiles",
4550
"aspnet",
4651
"authorlist",
52+
"caniuse",
4753
"deflist",
4854
"destructure",
4955
"docx",
5056
"eleventy",
57+
"flexbox",
5158
"frontmatter",
5259
"gumshoejs",
5360
"highlightjs",
@@ -68,13 +75,15 @@
6875
"preconnect",
6976
"prepended",
7077
"scrollbar",
78+
"shortcode",
7179
"sidenav",
7280
"signup",
7381
"slugify",
7482
"taglist",
7583
"unmark",
7684
"unstyled",
7785
"vdhwebapps",
78-
"walkthroughs"
86+
"walkthroughs",
87+
"zampieri"
7988
]
8089
}

posts/acronyms.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ Agile
7272
~ A collection of development practices that aim to deliver smaller, more incremental software with a full team approach
7373

7474
Kanban
75-
~ A board to track the status of tasks throughout the software development lifecycle. Also a style of process management that limits work in progress.
75+
~ A board to track the status of tasks throughout the software development lifecycle. Also a style of process management that limits work in progress.
7676
See also *information radiator*.
7777

7878

posts/duplicate_removal.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ summary: "A brief description of using CTEs to remove duplicates from a table."
99

1010
## Overview
1111

12-
Imports from a variety of sources and direct entry of records can often result in duplicate records within database tables. These duplicates make many operations unreliable and threaten overall data integrity and. One effective strategy for removing duplicates is to use a [CTE](https://www.essentialsql.com/introduction-common-table-expressions-ctes/) (Common Table Expression) and a [`PARTITION`](http://www.sqltutorial.org/sql-window-functions/sql-partition-by/) clause.
12+
Imports from a variety of sources and direct entry of records can often result in duplicate records within database tables. These duplicates make many operations unreliable and threaten overall data integrity and. One effective strategy for removing duplicates is to use a [CTE](https://www.essentialsql.com/introduction-common-table-expressions-ctes/) (Common Table Expression) and a [`PARTITION`](http://www.sqltutorial.org/sql-window-functions/sql-partition-by/) clause.
1313

1414
## Example
1515

posts/mo-prioritization.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ In order to triage incoming tickets, we're currently making use of the following
3232

3333
## Major
3434

35-
* {% include "assets/images/icons/jira/bug.svg" %} **Bug** - Major loss of function.
35+
* {% include "assets/images/icons/jira/bug.svg" %} **Bug** - Major loss of function.
3636
* {% include "assets/images/icons/jira/story.svg" %} **Enhancement** - ex. code refactoring for maintainability, providing better UX on forms
3737
* {% include "assets/images/icons/jira/task.svg" %} **Task** - ex. Data fix that is preventing access or services for a single end-user in production
3838

@@ -41,7 +41,7 @@ In order to triage incoming tickets, we're currently making use of the following
4141
## Medium
4242

4343
* {% include "assets/images/icons/jira/bug.svg" %} **Bug** - Impairment to functionality with time intensive or incomplete workaround.
44-
* {% include "assets/images/icons/jira/story.svg" %} **Enhancement** - Quality of Life enhancement which adds value to interface, process. Makes usage and maintainability easier or more efficient.
44+
* {% include "assets/images/icons/jira/story.svg" %} **Enhancement** - Quality of Life enhancement which adds value to interface, process. Makes usage and maintainability easier or more efficient.
4545
* {% include "assets/images/icons/jira/task.svg" %} **Task** - Data quality or Data integrity fixes that are visible to users
4646

4747

@@ -50,22 +50,22 @@ In order to triage incoming tickets, we're currently making use of the following
5050
## Minor
5151

5252
* {% include "assets/images/icons/jira/bug.svg" %} **Bug** - Minor loss of function, or other problem where easy workaround is present.
53-
* {% include "assets/images/icons/jira/story.svg" %} **Enhancement** - Minor addition of business value from completing
53+
* {% include "assets/images/icons/jira/story.svg" %} **Enhancement** - Minor addition of business value from completing
5454
* {% include "assets/images/icons/jira/task.svg" %} **Task** - Data cleanup for internal use only data
5555

5656

5757

5858
## Trivial
5959

60-
* {% include "assets/images/icons/jira/bug.svg" %} **Bug** - Cosmetic problem like misspelt words or misaligned text.
60+
* {% include "assets/images/icons/jira/bug.svg" %} **Bug** - Cosmetic problem like misspelt words or misaligned text.
6161
* {% include "assets/images/icons/jira/story.svg" %} **Enhancement** - Minor UI tweaks. Addressing minor technical debt issues in code and documentation.
6262

6363

6464

6565
## Backlog
6666

6767
* {% include "assets/images/icons/jira/bug.svg" %} **Bug** - ~~N/A~~
68-
* {% include "assets/images/icons/jira/story.svg" %} **Enhancement** - Work that can be completed as time allows. Ex. Efficiency improvements, non-critical lifecycle upgrades, technical debt
68+
* {% include "assets/images/icons/jira/story.svg" %} **Enhancement** - Work that can be completed as time allows. Ex. Efficiency improvements, non-critical lifecycle upgrades, technical debt
6969
* {% include "assets/images/icons/jira/task.svg" %} **Task** - Internal upkeep. Refactor data schema & normalization
7070

7171

resources.md

+2
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ A stash for helpful articles, references, documentation looked up along the way
2424
* [11ty - navigation links with active class](https://www.11ty.io/docs/collections/#example%3A-navigation-links-with-an-active-class-added-for-on-the-current-page)
2525
* [11ty - apply default template to posts](https://www.11ty.io/docs/data-template-dir/#example%3A-apply-a-default-layout-to-multiple-templates)
2626
* [11ty - content dates](https://www.11ty.io/docs/dates/)
27+
* [11ty - ignores](https://www.11ty.io/docs/ignores/)
28+
2729

2830
## JAMStack
2931

0 commit comments

Comments
 (0)