-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #264 from qld-gov-au/develop
QGDS-93 Theme Light & Dark
- Loading branch information
Showing
197 changed files
with
40,973 additions
and
35,342 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,42 @@ | ||
# http://editorconfig.org | ||
|
||
root = true | ||
|
||
[*] | ||
indent_style = space | ||
indent_size = 4 | ||
indent_size = 2 | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true | ||
end_of_line = lf | ||
charset = utf-8 | ||
|
||
# Docstrings and comments use max_line_length = 79 | ||
[*.py] | ||
max_line_length = 119 | ||
# Tab indentation (no size specified) | ||
[Makefile] | ||
indent_style = tab | ||
|
||
# Disable line length check for Markdown | ||
# Allow trailing whitespace in Markdown | ||
[*.md] | ||
max_line_length = off | ||
trim_trailing_whitespace = false | ||
|
||
# Use 2 spaces for JSON for readability | ||
[*.json] | ||
indent_size = 2 | ||
insert_final_newline = true | ||
|
||
# Use 2 spaces for YAML files | ||
[*.yml, *.yaml] | ||
indent_size = 2 | ||
|
||
# The JSON files contain newlines inconsistently | ||
insert_final_newline = ignore | ||
# Use 2 spaces for web files | ||
[*.css, *.scss, *.html] | ||
indent_size = 2 | ||
|
||
[*.js, *.ts] | ||
indent_size = 2 | ||
|
||
# Use 4 spaces for Python (PEP 8 standard) | ||
# Docstrings and comments use max_line_length = 79 | ||
[*.py] | ||
indent_size = 4 | ||
max_line_length = 79 |
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -5,3 +5,5 @@ | |
/storybook-static | ||
/dist | ||
/docs/storybook | ||
chromatic.config.js | ||
/.reports |
Oops, something went wrong.