Skip to content

Commit f49f6e6

Browse files
howard-ealflennikgnarfoutofambitstalgiag
authored
Merge pull request #1163 from w3c/development
Includes the following changes: **Features and Fixes** * #1125 * #1135 * #1144 * #1146 * #1150 * #1152 * #1153 * #1160 **Infrastructure changes** * #969 * #1151 * #1148 --------- Co-authored-by: alflennik <[email protected]> Co-authored-by: Mx Corey Frang <[email protected]> Co-authored-by: cypress evelyn masso <[email protected]> Co-authored-by: Stalgia Grigg <[email protected]>
2 parents a3e2b23 + d118b35 commit f49f6e6

File tree

547 files changed

+55380
-56683
lines changed

Some content is hidden

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

547 files changed

+55380
-56683
lines changed

.editorconfig

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ trim_trailing_whitespace = true
2222

2323
[*.{html,css,js}]
2424
indent_style = space
25-
indent_size = 4
25+
indent_size = 2
2626

2727
[*.md]
2828
trim_trailing_whitespace = false

.eslintrc.json

+57-31
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,62 @@
11
{
2-
"env": {
3-
"browser": true,
4-
"es6": true,
5-
"node": true,
6-
"jest/globals": true
2+
"env": {
3+
"browser": true,
4+
"es6": true,
5+
"node": true,
6+
"jest/globals": true
7+
},
8+
"extends": [
9+
"eslint:recommended",
10+
"plugin:react/recommended",
11+
"prettier",
12+
"plugin:prettier/recommended",
13+
"plugin:jest/recommended"
14+
],
15+
"parserOptions": {
16+
"ecmaFeatures": {
17+
"jsx": true
718
},
8-
"extends": [
9-
"eslint:recommended",
10-
"plugin:react/recommended",
11-
"prettier",
12-
"plugin:prettier/recommended",
13-
"plugin:jest/recommended"
19+
"ecmaVersion": 2020,
20+
"sourceType": "module"
21+
},
22+
"plugins": [
23+
"react",
24+
"json",
25+
"prettier",
26+
"jest"
27+
],
28+
"rules": {
29+
"linebreak-style": [
30+
"error",
31+
"unix"
1432
],
15-
"parserOptions": {
16-
"ecmaFeatures": {
17-
"jsx": true
18-
},
19-
"ecmaVersion": 2020,
20-
"sourceType": "module"
21-
},
22-
"plugins": ["react", "json", "prettier", "jest"],
23-
"rules": {
24-
"linebreak-style": ["error", "unix"],
25-
"semi": ["error", "always"],
26-
"eol-last": ["error", "always"],
27-
"no-console": ["error", { "allow": ["warn", "error"] }],
28-
"no-use-before-define": ["off"],
29-
"react/display-name": ["off"]
30-
},
31-
"settings": {
32-
"react": {
33-
"version": "detect"
34-
}
33+
"semi": [
34+
"error",
35+
"always"
36+
],
37+
"eol-last": [
38+
"error",
39+
"always"
40+
],
41+
"no-console": [
42+
"error",
43+
{
44+
"allow": [
45+
"warn",
46+
"error"
47+
]
48+
}
49+
],
50+
"no-use-before-define": [
51+
"off"
52+
],
53+
"react/display-name": [
54+
"off"
55+
]
56+
},
57+
"settings": {
58+
"react": {
59+
"version": "detect"
3560
}
61+
}
3662
}

.github/dependabot.yml

-16
Original file line numberDiff line numberDiff line change
@@ -6,22 +6,6 @@ updates:
66
schedule:
77
interval: "monthly"
88

9-
- package-ecosystem: "npm"
10-
open-pull-requests-limit: 5
11-
directory: "/client"
12-
schedule:
13-
interval: "monthly"
14-
commit-message:
15-
prefix: "client"
16-
17-
- package-ecosystem: "npm"
18-
open-pull-requests-limit: 5
19-
directory: "/server"
20-
schedule:
21-
interval: "monthly"
22-
commit-message:
23-
prefix: "server"
24-
259
- package-ecosystem: "github-actions"
2610
open-pull-requests-limit: 99
2711
directory: "/"

.github/workflows/runtest.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ jobs:
77
runs-on: ubuntu-20.04
88
steps:
99
- name: Checkout the repository
10-
uses: actions/checkout@v2
10+
uses: actions/checkout@v4
1111
- name: Install NodeJS 18
12-
uses: actions/setup-node@v3
12+
uses: actions/setup-node@v4
1313
with:
1414
node-version: '18'
1515
cache: 'npm'

.prettierrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"singleQuote": true,
3-
"tabWidth": 4,
3+
"tabWidth": 2,
44
"arrowParens": "avoid",
55
"trailingComma": "none"
66
}

admins.txt

+2-4
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,15 @@ boazsender
55
mfairchild365
66
gnarf
77
jugglinmike
8-
mzgoddard
98
isaacdurazo
109
sinabahram
11-
evmiguel
12-
alflennik
1310
jscholes
1411
howard-e
1512
mcking65
16-
lolaodelola
1713
stalgiag
1814
IsaDC
1915
ccanash
2016
Paul-Clue
2117
gracemccants
18+
outofambit
19+
ChrisC

client/.storybook/main.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
module.exports = {
2-
core: {
3-
builder: 'webpack5'
4-
},
5-
stories: ['../stories/*.stories.jsx'],
6-
addons: ['@storybook/addon-a11y', '@storybook/addon-controls']
2+
core: {
3+
builder: 'webpack5'
4+
},
5+
stories: ['../stories/*.stories.jsx'],
6+
addons: ['@storybook/addon-a11y', '@storybook/addon-controls']
77
};

client/babel.config.json

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
{
2-
"presets": ["@babel/env", "@babel/preset-react"],
3-
"plugins": ["lodash"]
2+
"presets": [
3+
"@babel/preset-env",
4+
"@babel/preset-react"
5+
],
6+
"plugins": [
7+
"lodash"
8+
]
49
}
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
.add-test-to-queue-confirmation {
2-
max-width: clamp(40vw, 300px, 800px);
2+
max-width: clamp(40vw, 300px, 800px);
33
}

0 commit comments

Comments
 (0)