Skip to content

Commit 5cca76a

Browse files
committed
Format all supported files with Prettier
1 parent bb20a2f commit 5cca76a

File tree

159 files changed

+3224
-2224
lines changed

Some content is hidden

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

159 files changed

+3224
-2224
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

+7-6
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
---
22
name: Bug report
33
about: Create a report to help us improve
4-
title: ''
4+
title: ""
55
labels: bug
6-
assignees: ''
7-
6+
assignees: ""
87
---
98

109
**Describe the bug**
1110
A clear and concise description of what the bug is.
1211

1312
**To Reproduce**
1413
Steps to reproduce the behavior:
14+
1515
1. Go to '...'
1616
2. Click on '....'
1717
3. Scroll down to '....'
@@ -24,6 +24,7 @@ A clear and concise description of what you expected to happen.
2424
If applicable, add screenshots to help explain your problem.
2525

2626
**Desktop (please complete the following information):**
27-
- OS: [e.g. iOS]
28-
- Browser [e.g. chrome, safari]
29-
- Version [e.g. 22]
27+
28+
- OS: [e.g. iOS]
29+
- Browser [e.g. chrome, safari]
30+
- Version [e.g. 22]

.github/ISSUE_TEMPLATE/feature_request.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
---
22
name: Feature request
33
about: Suggest an idea for this project
4-
title: ''
4+
title: ""
55
labels: enhancement
6-
assignees: ''
7-
6+
assignees: ""
87
---
98

109
**Is your feature request related to a problem? Please describe the use case and problem it solves.**

.github/workflows/chromatic.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: 'Chromatic'
1+
name: "Chromatic"
22

33
on:
44
push:

.github/workflows/publish.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
name: 'Publish to npm'
1+
name: "Publish to npm"
22
on:
33
push:
44
tags:
5-
- "v*.*.*"
5+
- "v*.*.*"
66

77
jobs:
88
publish:
9-
name: 'Publish'
9+
name: "Publish"
1010
runs-on: ubuntu-latest
1111

1212
steps:
@@ -16,7 +16,7 @@ jobs:
1616
- uses: actions/setup-node@v3
1717
with:
1818
node-version: 12.x
19-
registry-url: 'https://registry.npmjs.org'
19+
registry-url: "https://registry.npmjs.org"
2020
- run: npm ci
2121
- run: npm publish
2222
env:

.github/workflows/storybook_build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Storybook Build
22
on:
33
push:
44
branches:
5-
- master
5+
- master
66

77
jobs:
88
build_deploy:

.storybook/main.js

+13-13
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
module.exports = {
22
core: {
3-
builder: "webpack5"
3+
builder: 'webpack5',
44
},
5-
"stories": [
6-
"../stories/Introduction.stories.mdx",
7-
"../stories/**/*.stories.mdx",
8-
"../stories/**/*.stories.@(js|jsx|ts|tsx)"
5+
stories: [
6+
'../stories/Introduction.stories.mdx',
7+
'../stories/**/*.stories.mdx',
8+
'../stories/**/*.stories.@(js|jsx|ts|tsx)',
99
],
10-
"addons": [
11-
"@storybook/addon-links",
12-
"@storybook/addon-essentials",
13-
"@storybook/addon-a11y",
14-
"@storybook/addon-storysource",
15-
'@etchteam/storybook-addon-status'
10+
addons: [
11+
'@storybook/addon-links',
12+
'@storybook/addon-essentials',
13+
'@storybook/addon-a11y',
14+
'@storybook/addon-storysource',
15+
'@etchteam/storybook-addon-status',
1616
],
17-
staticDirs: ['../dist', '../stories/assets']
18-
}
17+
staticDirs: ['../dist', '../stories/assets'],
18+
};

.storybook/preview-body.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<style>
22
:root {
3-
--brand-primary: #FFFFFF;
3+
--brand-primary: #ffffff;
44
}
55

66
html {
@@ -22,7 +22,7 @@
2222
}
2323

2424
.ember-application {
25-
background-color: var(--au-gray-100);
25+
background-color: var(--au-gray-100);
2626
}
2727

2828
.sb-show-main.sb-main-padded #root,

.storybook/preview.js

+21-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import vlTheme from './vlTheme';
22

33
export const parameters = {
4-
actions: { argTypesRegex: "^on[A-Z].*" },
4+
actions: { argTypesRegex: '^on[A-Z].*' },
55
controls: {
66
matchers: {
77
color: /(background|color)$/i,
@@ -28,7 +28,24 @@ export const parameters = {
2828
},
2929
options: {
3030
storySort: {
31-
order: ['Introduction', 'Outline', ['Getting started', 'Accessibility', 'Browser support', 'Coding standards', 'Architecture and namespaces'], 'Variables', ['Colors', 'Colors: semantic', 'CSS Variables', 'Sass Variables'], 'Objects', 'Utilities', 'Components', 'Patterns', 'Templates'],
31+
order: [
32+
'Introduction',
33+
'Outline',
34+
[
35+
'Getting started',
36+
'Accessibility',
37+
'Browser support',
38+
'Coding standards',
39+
'Architecture and namespaces',
40+
],
41+
'Variables',
42+
['Colors', 'Colors: semantic', 'CSS Variables', 'Sass Variables'],
43+
'Objects',
44+
'Utilities',
45+
'Components',
46+
'Patterns',
47+
'Templates',
48+
],
3249
},
3350
},
3451
docs: {
@@ -50,7 +67,7 @@ export const parameters = {
5067
background: '#AB1F1F9',
5168
color: '#ffffff',
5269
description: 'This component is deprecated',
53-
}
70+
},
5471
},
5572
},
56-
}
73+
};

.storybook/vlTheme.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ export default create({
88
colorSecondary: '#1EA7FD',
99

1010
// Typography
11-
fontBase: '"flanders-sans", BlinkMacSystemFont, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif',
11+
fontBase:
12+
'"flanders-sans", BlinkMacSystemFont, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif',
1213
fontCode: 'monospace',
1314

1415
// Toolbar default and active colors

0 commit comments

Comments
 (0)