forked from mozilla/bedrock
-
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.
- Loading branch information
1 parent
2ef16dc
commit 7305098
Showing
157 changed files
with
5,879 additions
and
3,550 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,5 @@ | ||
# Migrate code style to Black | ||
31943fea7582fa42320b44e796b0e343bfa90f89 | ||
|
||
# Migrate JS code style to Prettier | ||
af4305055ec7748541c87c7cb035c547fbcb8303 |
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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# Ignore artifacts: | ||
.vscode/ | ||
assets | ||
data | ||
docs | ||
git-repos | ||
node_modules | ||
static | ||
static_build | ||
static_final | ||
venv | ||
|
||
# Ignore external JS libraries | ||
media/js/libs/**/ | ||
media/js/ie/libs/**/ | ||
|
||
# Ignore file types: | ||
# https://github.com/prettier/prettier/issues/6356 blocks formating scss/css. | ||
*.html | ||
*.md | ||
*.scss | ||
*.css | ||
*.yml | ||
*.yaml | ||
*.json |
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,6 @@ | ||
{ | ||
"trailingComma": "none", | ||
"tabWidth": 4, | ||
"semi": true, | ||
"singleQuote": true | ||
} |
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,40 +1,43 @@ | ||
{ | ||
"rules": { | ||
"color-no-invalid-hex": true, | ||
"font-family-no-duplicate-names": true, | ||
"font-family-name-quotes": "always-where-recommended", | ||
"function-name-case": "lower", | ||
"function-url-no-scheme-relative": true, | ||
"function-url-quotes": "always", | ||
"number-no-trailing-zeros": true, | ||
"length-zero-no-unit": true, | ||
"unit-case": "lower", | ||
"unit-no-unknown": true, | ||
"property-case": "lower", | ||
"property-no-unknown": true, | ||
"keyframe-declaration-no-important": true, | ||
"declaration-no-important": true, | ||
"declaration-block-no-shorthand-property-overrides": true, | ||
"declaration-block-single-line-max-declarations": 1, | ||
"declaration-block-trailing-semicolon": "always", | ||
"declaration-block-semicolon-newline-after": "always-multi-line", | ||
"block-no-empty": true, | ||
"selector-pseudo-class-no-unknown": true, | ||
"selector-pseudo-element-no-unknown": true, | ||
"selector-pseudo-element-case": "lower", | ||
"selector-type-case": "lower", | ||
"selector-type-no-unknown": true, | ||
"selector-max-empty-lines": 0, | ||
"media-feature-name-case": "lower", | ||
"media-feature-name-no-unknown": [true, { | ||
ignoreMediaFeatureNames: ["min--moz-device-pixel-ratio"] | ||
}], | ||
"comment-no-empty": true, | ||
"max-nesting-depth": 5, | ||
"no-invalid-double-slash-comments": true, | ||
"no-unknown-animations": true, | ||
"no-extra-semicolons": true, | ||
"no-missing-end-of-source-newline": true, | ||
"no-eol-whitespace": true | ||
} | ||
"rules": { | ||
"color-no-invalid-hex": true, | ||
"font-family-no-duplicate-names": true, | ||
"font-family-name-quotes": "always-where-recommended", | ||
"function-name-case": "lower", | ||
"function-url-no-scheme-relative": true, | ||
"function-url-quotes": "always", | ||
"number-no-trailing-zeros": true, | ||
"length-zero-no-unit": true, | ||
"unit-case": "lower", | ||
"unit-no-unknown": true, | ||
"property-case": "lower", | ||
"property-no-unknown": true, | ||
"keyframe-declaration-no-important": true, | ||
"declaration-no-important": true, | ||
"declaration-block-no-shorthand-property-overrides": true, | ||
"declaration-block-single-line-max-declarations": 1, | ||
"declaration-block-trailing-semicolon": "always", | ||
"declaration-block-semicolon-newline-after": "always-multi-line", | ||
"block-no-empty": true, | ||
"selector-pseudo-class-no-unknown": true, | ||
"selector-pseudo-element-no-unknown": true, | ||
"selector-pseudo-element-case": "lower", | ||
"selector-type-case": "lower", | ||
"selector-type-no-unknown": true, | ||
"selector-max-empty-lines": 0, | ||
"media-feature-name-case": "lower", | ||
"media-feature-name-no-unknown": [ | ||
true, | ||
{ | ||
"ignoreMediaFeatureNames": ["min--moz-device-pixel-ratio"] | ||
} | ||
], | ||
"comment-no-empty": true, | ||
"max-nesting-depth": 5, | ||
"no-invalid-double-slash-comments": true, | ||
"no-unknown-animations": true, | ||
"no-extra-semicolons": true, | ||
"no-missing-end-of-source-newline": true, | ||
"no-eol-whitespace": true | ||
} | ||
} |
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
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
Oops, something went wrong.