-
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.
chore(configs): release is missing required assets #74
- Loading branch information
1 parent
74ad1da
commit 231ac15
Showing
3 changed files
with
41 additions
and
9 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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# EditorConfig is awesome: https://EditorConfig.org | ||
|
||
# top-most EditorConfig file | ||
root = true | ||
|
||
# Unix-style newlines with a newline ending every file | ||
[*] | ||
end_of_line = lf | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true | ||
|
||
# Matches multiple files with brace expansion notation | ||
# Set default charset | ||
charset = utf-8 | ||
|
||
# Indentation override for all JS under lib directory | ||
indent_style = space | ||
indent_size = 2 |
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 @@ | ||
# Lines starting with '#' are comments. | ||
# Each line is a file pattern followed by one or more owners. | ||
# https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners#codeowners-syntax | ||
|
||
# The Auro team will be the default owners for everything in the repo. | ||
* @AlaskaAirlines/generalauroreviewers | ||
|
||
# Order is important. The last matching pattern has the most precedence. | ||
# If a pull request touches any files in the ./src dir, only these owners | ||
# will be requested to review. | ||
./src/* @AlaskaAirlines/auroteamreviewers |
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,17 +1,20 @@ | ||
# standard ignore | ||
*config* | ||
*conf* | ||
|
||
.github/ | ||
.gitignore | ||
.eslintrc | ||
.stylelintrc | ||
karma.conf.js | ||
rollup.config.js | ||
babel.config.js | ||
.github/ | ||
index.html | ||
|
||
coverage/ | ||
docs/ | ||
scripts/ | ||
test/ | ||
demo/css | ||
demo/sass | ||
coverage/ | ||
demo/**/*.css | ||
demo/**/*.scss | ||
demo/**/*.html | ||
|
||
# ignore src | ||
# ignore src styles | ||
src/**/*.scss | ||
src/**/*.css |