-
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
Garcia
committed
Feb 28, 2022
0 parents
commit 9e64a2f
Showing
911 changed files
with
200,657 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,12 @@ | ||
module.exports = { | ||
presets: [ | ||
[ | ||
'@babel/preset-env', | ||
{ | ||
loose: true, | ||
bugfixes: true, | ||
modules: 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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# https://github.com/browserslist/browserslist#readme | ||
|
||
>= 0.5% | ||
last 2 major versions | ||
not dead | ||
Chrome >= 60 | ||
Firefox >= 60 | ||
Firefox ESR | ||
iOS >= 12 | ||
Safari >= 12 | ||
not Explorer <= 11 |
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,66 @@ | ||
{ | ||
"files": [ | ||
{ | ||
"path": "./dist/css/bootstrap-grid.css", | ||
"maxSize": "7 kB" | ||
}, | ||
{ | ||
"path": "./dist/css/bootstrap-grid.min.css", | ||
"maxSize": "6 kB" | ||
}, | ||
{ | ||
"path": "./dist/css/bootstrap-reboot.css", | ||
"maxSize": "2.25 kB" | ||
}, | ||
{ | ||
"path": "./dist/css/bootstrap-reboot.min.css", | ||
"maxSize": "2 kB" | ||
}, | ||
{ | ||
"path": "./dist/css/bootstrap-utilities.css", | ||
"maxSize": "7.5 kB" | ||
}, | ||
{ | ||
"path": "./dist/css/bootstrap-utilities.min.css", | ||
"maxSize": "6.75 kB" | ||
}, | ||
{ | ||
"path": "./dist/css/bootstrap.css", | ||
"maxSize": "24.25 kB" | ||
}, | ||
{ | ||
"path": "./dist/css/bootstrap.min.css", | ||
"maxSize": "22.25 kB" | ||
}, | ||
{ | ||
"path": "./dist/js/bootstrap.bundle.js", | ||
"maxSize": "41.5 kB" | ||
}, | ||
{ | ||
"path": "./dist/js/bootstrap.bundle.min.js", | ||
"maxSize": "22.25 kB" | ||
}, | ||
{ | ||
"path": "./dist/js/bootstrap.esm.js", | ||
"maxSize": "27 kB" | ||
}, | ||
{ | ||
"path": "./dist/js/bootstrap.esm.min.js", | ||
"maxSize": "18.25 kB" | ||
}, | ||
{ | ||
"path": "./dist/js/bootstrap.js", | ||
"maxSize": "27.5 kB" | ||
}, | ||
{ | ||
"path": "./dist/js/bootstrap.min.js", | ||
"maxSize": "15.75 kB" | ||
} | ||
], | ||
"ci": { | ||
"trackBranches": [ | ||
"main", | ||
"v4-dev" | ||
] | ||
} | ||
} |
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,11 @@ | ||
# editorconfig.org | ||
|
||
root = true | ||
|
||
[*] | ||
charset = utf-8 | ||
end_of_line = lf | ||
indent_size = 2 | ||
indent_style = space | ||
insert_final_newline = true | ||
trim_trailing_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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
**/*.min.js | ||
**/dist/ | ||
**/vendor/ | ||
/_site/ | ||
/js/coverage/ | ||
/site/static/sw.js |
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,59 @@ | ||
{ | ||
"root": true, | ||
"extends": [ | ||
"plugin:import/errors", | ||
"plugin:import/warnings", | ||
"plugin:unicorn/recommended", | ||
"xo", | ||
"xo/browser" | ||
], | ||
"rules": { | ||
"capitalized-comments": "off", | ||
"indent": [ | ||
"error", | ||
2, | ||
{ | ||
"MemberExpression": "off", | ||
"SwitchCase": 1 | ||
} | ||
], | ||
"max-params": [ | ||
"warn", | ||
5 | ||
], | ||
"multiline-ternary": [ | ||
"error", | ||
"always-multiline" | ||
], | ||
"new-cap": [ | ||
"error", | ||
{ | ||
"properties": false | ||
} | ||
], | ||
"no-console": "error", | ||
"object-curly-spacing": [ | ||
"error", | ||
"always" | ||
], | ||
"semi": [ | ||
"error", | ||
"never" | ||
], | ||
"unicorn/consistent-function-scoping": "off", | ||
"unicorn/explicit-length-check": "off", | ||
"unicorn/no-array-callback-reference": "off", | ||
"unicorn/no-array-for-each": "off", | ||
"unicorn/no-for-loop": "off", | ||
"unicorn/no-null": "off", | ||
"unicorn/no-unused-properties": "error", | ||
"unicorn/no-useless-undefined": "off", | ||
"unicorn/prefer-dom-node-append": "off", | ||
"unicorn/prefer-dom-node-dataset": "off", | ||
"unicorn/prefer-dom-node-remove": "off", | ||
"unicorn/prefer-module": "off", | ||
"unicorn/prefer-query-selector": "off", | ||
"unicorn/prefer-spread": "off", | ||
"unicorn/prevent-abbreviations": "off" | ||
} | ||
} |
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,8 @@ | ||
# Enforce Unix newlines | ||
* text=auto eol=lf | ||
|
||
# Don't diff or textually merge source maps | ||
*.map binary | ||
|
||
bootstrap.css linguist-vendored=false | ||
bootstrap.js linguist-vendored=false |
Validating CODEOWNERS rules …
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,3 @@ | ||
*.js @twbs/js-review | ||
*.css @twbs/css-review | ||
*.scss @twbs/css-review |
Oops, something went wrong.