Skip to content

Commit 3c7934a

Browse files
committed
style: improve code style of SCSS & YAML
1 parent 02b7bd5 commit 3c7934a

File tree

12 files changed

+181
-117
lines changed

12 files changed

+181
-117
lines changed

.github/workflows/codeql.yml

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
name: 'CodeQL'
1+
name: "CodeQL"
22

33
on:
44
push:
5-
paths: [ '**.js' ]
5+
paths: ["**.js"]
66
pull_request:
7-
paths: [ '**.js' ]
7+
paths: ["**.js"]
88
schedule:
9-
- cron: '0 0 * * 5'
9+
- cron: "0 0 * * 5"
1010

1111
jobs:
1212
analyze:
@@ -20,25 +20,25 @@ jobs:
2020
strategy:
2121
fail-fast: false
2222
matrix:
23-
language: [ 'javascript' ]
23+
language: ["javascript"]
2424
# Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support
2525

2626
steps:
27-
- name: Checkout repository
28-
uses: actions/checkout@v3
27+
- name: Checkout repository
28+
uses: actions/checkout@v3
2929

30-
# Initializes the CodeQL tools for scanning.
31-
- name: Initialize CodeQL
32-
uses: github/codeql-action/init@v2
33-
with:
34-
languages: '${{ matrix.language }}'
30+
# Initializes the CodeQL tools for scanning.
31+
- name: Initialize CodeQL
32+
uses: github/codeql-action/init@v2
33+
with:
34+
languages: "${{ matrix.language }}"
3535

36-
# Autobuild attempts to build any compiled languages (C/C++, C#, Go, or Java).
37-
# If this step fails, then you should remove it and run the build manually (see below)
38-
- name: Autobuild
39-
uses: github/codeql-action/autobuild@v2
36+
# Autobuild attempts to build any compiled languages (C/C++, C#, Go, or Java).
37+
# If this step fails, then you should remove it and run the build manually (see below)
38+
- name: Autobuild
39+
uses: github/codeql-action/autobuild@v2
4040

41-
- name: Perform CodeQL Analysis
42-
uses: github/codeql-action/analyze@v2
43-
with:
44-
category: '/language:${{ matrix.language }}'
41+
- name: Perform CodeQL Analysis
42+
uses: github/codeql-action/analyze@v2
43+
with:
44+
category: "/language:${{ matrix.language }}"

.github/workflows/style-lint.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
name: 'Style Lint'
1+
name: "Style Lint"
22

33
on:
44
push:
55
branches-ignore:
6-
- 'production'
7-
- 'docs'
6+
- "production"
7+
- "docs"
88
paths:
9-
- '_sass/**/*.scss'
9+
- "_sass/**/*.scss"
1010
pull_request:
1111
paths:
12-
- '_sass/**/*.scss'
12+
- "_sass/**/*.scss"
1313

1414
jobs:
1515
stylelint:

_data/contact.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,18 @@
11
# The contact options.
22

33
- type: github
4-
icon: 'fab fa-github'
4+
icon: "fab fa-github"
55

66
- type: twitter
7-
icon: 'fab fa-twitter'
7+
icon: "fab fa-twitter"
88

99
- type: email
10-
icon: 'fas fa-envelope'
11-
noblank: true # open link in current tab
10+
icon: "fas fa-envelope"
11+
noblank: true # open link in current tab
1212

1313
- type: rss
14-
icon: 'fas fa-rss'
14+
icon: "fas fa-rss"
1515
noblank: true
16-
1716
# Uncomment and complete the url below to enable more contact options
1817
#
1918
# - type: mastodon

0 commit comments

Comments
 (0)