-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Integrates Prettier for formatting YAML, SCSS, JavaScript, and Markdo…
…wn (#1213) * Correcting the Markdown documents * Correcting the SCSS files * Correcting the JS files * Correcting the YAML files * Correcting the TypeScript files * Updating CircleCI * Resolving conflicts between ESLint and Prettier and integrating eslint-config-prettier
- Loading branch information
1 parent
80ca3fc
commit 76a6934
Showing
61 changed files
with
1,514 additions
and
1,394 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -77,5 +77,3 @@ project_create_8.txt | |
# Ignore rspec report | ||
/spec/fixtures/failed_tests.txt | ||
|
||
# Ignore prettier config | ||
.prettierrc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
.yarn/ | ||
vendor/ | ||
README.md | ||
.prettierrc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
singleQuote: true | ||
proseWrap: never | ||
printWidth: 96 | ||
overrides: | ||
- files: | ||
- '*.md' | ||
- 'docs/**/*.md' | ||
options: | ||
proseWrap: preserve | ||
singleQuote: false | ||
- files: | ||
- 'config/**/*.yml' | ||
- '*.yml' | ||
- '*.yaml' | ||
options: | ||
proseWrap: preserve | ||
singleQuote: false | ||
- files: | ||
- 'app/assets/stylesheets/**/*.scss' | ||
options: | ||
proseWrap: preserve | ||
singleQuote: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,25 @@ | ||
#alternate_mediaflux { | ||
text-align: center; | ||
background-color: rgb(0, 231, 73); | ||
padding: 20px 0px 10px 0px; | ||
border-bottom: #000000 solid 2px; | ||
color: rgb(0, 0, 0); | ||
box-shadow: inset 0px 9px 10px 2px rgba(0,0,0,0.5); | ||
text-align: center; | ||
background-color: rgb(0, 231, 73); | ||
padding: 20px 0px 10px 0px; | ||
border-bottom: #000000 solid 2px; | ||
color: rgb(0, 0, 0); | ||
box-shadow: inset 0px 9px 10px 2px rgba(0, 0, 0, 0.5); | ||
|
||
h1 { | ||
font-size: 24px; | ||
font-weight: bold; | ||
} | ||
p { | ||
font-size: 18px; | ||
} | ||
a { | ||
text-decoration: underline; | ||
} | ||
h1 { | ||
font-size: 24px; | ||
font-weight: bold; | ||
} | ||
|
||
@media all and (max-width: 860px) { | ||
#emulator { | ||
padding: 10px 3px 5px 3px; | ||
} | ||
} | ||
p { | ||
font-size: 18px; | ||
} | ||
a { | ||
text-decoration: underline; | ||
} | ||
} | ||
|
||
@media all and (max-width: 860px) { | ||
#emulator { | ||
padding: 10px 3px 5px 3px; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,23 @@ | ||
#banner { | ||
text-align: center; | ||
background-color: #e1f0fb; | ||
padding: 20px 0px 10px 0px; | ||
border-bottom: #0060a7 solid 2px; | ||
color: #0060a7; | ||
h1 { | ||
font-size: 24px; | ||
font-weight: bold; | ||
} | ||
p { | ||
font-size: 18px; | ||
} | ||
a { | ||
text-decoration: underline; | ||
} | ||
text-align: center; | ||
background-color: #e1f0fb; | ||
padding: 20px 0px 10px 0px; | ||
border-bottom: #0060a7 solid 2px; | ||
color: #0060a7; | ||
h1 { | ||
font-size: 24px; | ||
font-weight: bold; | ||
} | ||
|
||
@media all and (max-width: 860px) { | ||
#banner { | ||
padding: 10px 3px 5px 3px; | ||
} | ||
} | ||
p { | ||
font-size: 18px; | ||
} | ||
a { | ||
text-decoration: underline; | ||
} | ||
} | ||
|
||
@media all and (max-width: 860px) { | ||
#banner { | ||
padding: 10px 3px 5px 3px; | ||
} | ||
} |
Oops, something went wrong.