Skip to content

Commit 97c2090

Browse files
authored
Merge pull request #6 from DSACMS/fix-all-linters
Fix all linters
2 parents dfc1698 + 1f85dd0 commit 97c2090

File tree

7 files changed

+37
-9
lines changed

7 files changed

+37
-9
lines changed

COMMUNITY.md

Whitespace-only changes.

CONTRIBUTING.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -161,11 +161,24 @@ request will be closed.
161161
The changes in the pull request will be collapsed into a single commit, but the
162162
authorship metadata will be preserved.
163163

164+
## Shipping Releases
165+
<!-- [TODO] -->
166+
164167
## Documentation
165168

166169
We also welcome improvements to the project [documentation](docs/Main.md) or to the existing
167170
docs. Please file an [issue](https://github.com/DSACMS/metrics/issues/new).
168171

172+
<!--
173+
## Governance
174+
Information about how the {{ cookiecutter.project_name }} community is governed may be found in [GOVERNANCE.md](GOVERNANCE.md).
175+
-->
176+
177+
<!--
178+
## Glossary
179+
Information about terminology and acronyms used in this documentation may be found in [GLOSSARY.md](GLOSSARY.md).
180+
-->
181+
169182
## Policies
170183

171184
### Open Source Policy

GOVERNANCE.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Governance
2+
3+
# Governance
4+
5+
<!-- TODO: Starting at Tier 3 GOVERNANCE.md has basic language about early community governance, how the project make decisions, and how contributors are elevated through the leadership process if any (e.g. joining teams, getting maintainer status, etc...)
6+
-->
7+
8+
This project is governed by our [Community Guidelines](COMMUNITY.md) and [Code of Conduct](CODE_OF_CONDUCT.md).

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,21 @@
44
## About the Project
55
The CMS Repository Metrics Website shows an overview of software development activity across open source projects within a specified organization. This webpage is meant to be used by developers and program managers interested in repository health within CMS open source projects.
66

7+
### Project Mission
8+
<!-- [TODO] -->
9+
710
### Project Vision
811
A metrics website that automatically pulls GitHub Repository data each week to produce numerical statistics and visualizations to aid developers and PMs in monitoring project health.
912

1013
## Core Team
1114
An up-to-date list of core team members can be found in [MAINTAINERS.md](MAINTAINERS.md).
1215

16+
### Team Mission
17+
<!-- [TODO] -->
18+
19+
### Agency Mission
20+
<!-- [TODO] -->
21+
1322
## Documentation Index
1423
- [CONTRIBUTING.md](./CONTRIBUTING.md)
1524
- [MAINTAINERS.md](./MAINTAINERS.md)

app/.pa11yci.js

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,8 @@ module.exports = {
88
hideElements:
99
"iframe, div[style*='display: none;'], [data-pa11y-ignore], a[href*='/TODO/']",
1010
chromeLaunchConfig: {
11-
executablePath: "/usr/bin/google-chrome"
12-
}
11+
executablePath: "/usr/bin/google-chrome",
12+
},
1313
},
14-
urls: [
15-
"http://localhost:8080"
16-
]
17-
}
14+
urls: ["http://localhost:8080"],
15+
}

app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"prettier": "prettier --check ./**.{js,css,liquid}",
2525
"prettier:fix": "prettier --write ./**.{js,css,liquid}",
2626
"assets:refresh": "npm run build:rollup && npm run build:postcss",
27-
"test:pa11y-ci": "pa11y-ci --config .pa11y.js",
27+
"test:pa11y-ci": "pa11y-ci --config .pa11yci.js",
2828
"test:html-validation": "echo 'HTML validation skipped -using 11ty build validation instead'",
2929
"test:links": "blc http://localhost:8080 -ro --exclude external || exit 0"
3030
},

app/site/_includes/nav.liquid

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<a href="{{ "/" | url}}" title="{{site.title}}">Open Source Repository Metrics Website</a>
1010
</em>
1111
</div>
12-
<button class="usa-menu-btn menu-btn-styling">
12+
<button class="usa-menu-btn menu-btn-styling" aria-label="Open menu">
1313
<svg
1414
class="usa-icon--size-5 toggle-icon"
1515
aria-hidden="true"
@@ -22,7 +22,7 @@
2222
</div>
2323
</div>
2424
<nav aria-label="Primary navigation" class="usa-nav">
25-
<button class="usa-nav__close">
25+
<button class="usa-nav__close" aria-label="Close navigation">
2626
<svg class="usa-icon--size-4 button-styling" aria-hidden="true" focusable="false" role="img">
2727
<use href="{{ site.baseurl }}/assets/img/sprite.svg#close"></use>
2828
</svg>

0 commit comments

Comments
 (0)