Skip to content

Commit 0c0ede6

Browse files
feat: update based on trivet-monolingual@1.x (#836)
1 parent 12115fd commit 0c0ede6

164 files changed

Lines changed: 24626 additions & 15877 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.dockerignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
.git
22
node_modules
3-
dist
3+
_site

.editorconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ indent_size = 4
1010

1111
[*.scss]
1212
indent_style = space
13-
indent_size = 4
13+
indent_size = 2
1414

1515
[*.yml]
1616
indent_style = space

.eslintignore

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
dist/**
2-
!.eleventy.js
1+
_site/**

.eslintrc.js

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
"use strict";
2+
3+
module.exports = {
4+
extends: [
5+
"fluid",
6+
"plugin:yml/standard",
7+
"plugin:markdown/recommended"
8+
],
9+
ignorePatterns: ["_site/", "backstop_data/", "!.*.cjs", "!.*.js", "!.github/"],
10+
env: {
11+
amd: true,
12+
browser: true,
13+
node: true,
14+
es6: true
15+
},
16+
parserOptions: {
17+
ecmaVersion: 2020
18+
},
19+
overrides: [
20+
{
21+
files: ["src/assets/scripts/app.js", "src/assets/scripts/**/*.module.js"],
22+
parserOptions: {
23+
sourceType: "module"
24+
}
25+
},
26+
{
27+
files: ["**/*.md"],
28+
processor: "markdown/markdown"
29+
}
30+
]
31+
};

.eslintrc.json

Lines changed: 0 additions & 21 deletions
This file was deleted.

.fluidlintallrc.json

Lines changed: 0 additions & 46 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 17 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,37 +8,46 @@ assignees: ''
88
---
99

1010
## Describe the bug
11+
1112
A clear and concise description of what the bug is.
1213

1314
### To reproduce
15+
1416
Steps to reproduce the behavior:
17+
1518
1. Go to '...'
1619
2. Click on '....'
1720
3. Scroll down to '....'
1821
4. See error
1922

2023
### Expected behavior
24+
2125
A clear and concise description of what you expected to happen.
2226

2327
## Screenshots
28+
2429
If applicable, add screenshots to help explain your problem.
2530

2631
## Technical details
2732

2833
### Desktop
29-
- OS: [e.g. iOS]
30-
- Browser [e.g. chrome, safari]
31-
- Version [e.g. 22]
3234

33-
### Smartphone / tablet
34-
- Device: [e.g. iPhone6]
35-
- OS: [e.g. iOS8.1]
36-
- Browser [e.g. stock browser, safari]
37-
- Version [e.g. 22]
35+
- OS: [e.g. iOS]
36+
- Browser [e.g. chrome, safari]
37+
- Version [e.g. 22]
38+
39+
### Smartphone / tablet
40+
41+
- Device: [e.g. iPhone6]
42+
- OS: [e.g. iOS8.1]
43+
- Browser [e.g. stock browser, safari]
44+
- Version [e.g. 22]
3845

3946
### Assistive technology used
47+
4048
- Name: [Name of assistive technology]
4149
- Version: [e.g. 22]
4250

4351
## Additional context or notes
52+
4453
Add any other context about the problem here.

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,17 @@ assignees: ''
88
---
99

1010
## Is your feature request related to a problem?
11+
1112
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
1213

1314
## Describe the solution you'd like
15+
1416
A clear and concise description of what you want to happen.
1517

1618
## Describe alternative solutions you've considered
19+
1720
A clear and concise description of any alternative solutions or features you've considered.
1821

1922
## Additional context or notes
23+
2024
Add any other context or screenshots about the feature request here.

.github/dependabot.yml

Lines changed: 7 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,18 @@
1-
# To get started with Dependabot version updates, you'll need to specify which
2-
# package ecosystems to update and where the package manifests are located.
3-
# Please see the documentation for all configuration options:
4-
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
5-
61
version: 2
72
updates:
8-
# Enable version updates for npm
93
- package-ecosystem: npm
10-
# Look for `package.json` and `lock` files in the `root` directory
11-
directory: "/"
12-
# Check for updates once a month
4+
directory: /
135
schedule:
146
interval: monthly
157
allow:
16-
# Allow direct updates only (for packages named in package.json)
178
- dependency-type: direct
18-
- dependency-type: production
199
ignore:
20-
- dependency-name: husky
21-
versions: [">=5"]
10+
- dependency-name: react
11+
versions: [">16"]
12+
- dependency-name: stylelint
13+
versions: [">14"]
14+
- dependency-name: stylelint-config-standard-scss
15+
versions: [">7"]
2216
- package-ecosystem: github-actions
2317
directory: /
2418
schedule:

.github/workflows/docker.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: Docker build
2+
3+
on:
4+
pull_request:
5+
branches: [main]
6+
7+
jobs:
8+
docker:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v3
12+
- name: Build with Docker
13+
run: docker build .
14+

0 commit comments

Comments
 (0)