forked from instructure/instructure-ui
-
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.
refs CNVS-24006 Change-Id: I5e8787f4176cbd6452958b4dfe9b9d9aa80cc4f6
- Loading branch information
Showing
52 changed files
with
2,131 additions
and
0 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,3 @@ | ||
{ | ||
"stage": 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,2 @@ | ||
log/* | ||
.git/* |
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,29 @@ | ||
# EditorConfig helps developers define and maintain consistent | ||
# coding styles between different editors and IDEs | ||
# editorconfig.org | ||
|
||
root = true | ||
|
||
|
||
[*] | ||
end_of_line = lf | ||
charset = utf-8 | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true | ||
indent_style = space | ||
indent_size = 2 | ||
|
||
[*.js] | ||
indent_style = space | ||
indent_size = 2 | ||
|
||
[*.css] | ||
indent_style = space | ||
indent_size = 2 | ||
|
||
[*.html] | ||
indent_style = space | ||
indent_size = 2 | ||
|
||
[*.{diff,md}] | ||
trim_trailing_whitespace = 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,23 @@ | ||
{ | ||
"parser": "babel-eslint", | ||
"rules": { | ||
"max-len": [2, 120, 2], | ||
"jsx-quotes": [2, "prefer-double"], | ||
"key-spacing": [2, { | ||
"beforeColon": false, | ||
"afterColon": true, | ||
"mode": "minimum" | ||
}], | ||
"no-var": 2, | ||
"prefer-const": 2 | ||
}, | ||
"env": { | ||
"browser": true, | ||
"mocha": true, | ||
"es6": true | ||
}, | ||
"globals": { | ||
"expect": true | ||
}, | ||
"extends": ["standard", "standard-react"] | ||
} |
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 @@ | ||
node_modules/ | ||
__build__/ | ||
__dist__/ | ||
__examples__/ |
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,5 @@ | ||
**/.* | ||
**/__tests__ | ||
**/__examples__ | ||
CONTRIBUTING.md | ||
bower.json |
Empty file.
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,39 @@ | ||
### Commit Subjects | ||
|
||
If your patch **changes the API or fixes a bug** please use one of the | ||
following prefixes in your commit subject: | ||
|
||
- `[fixed] ...` | ||
- `[changed] ...` | ||
- `[added] ...` | ||
- `[removed] ...` | ||
|
||
That ensures the subject line of your commit makes it into the | ||
auto-generated changelog. Do not use these tags if your change doesn't | ||
fix a bug and doesn't change the public API. | ||
|
||
Commits with changed, added, or removed, must be reviewed by another | ||
collaborator. | ||
|
||
#### When using `[changed]` or `[removed]`... | ||
|
||
Please include an upgrade path with example code in the commit message. | ||
If it doesn't make sense to do this, then it doesn't make sense to use | ||
`[changed]` or `[removed]` :) | ||
|
||
### Docs | ||
|
||
Please update the README with any API changes, the code and docs should | ||
always be in sync. | ||
|
||
### Development | ||
|
||
- `npm start` runs the dev server to run/develop examples | ||
- `npm test` will run the tests. | ||
|
||
### Build | ||
|
||
Please do not include the output of `npm run build` in your commits, we | ||
only do this when we release. (Also, you probably don't need to build | ||
anyway unless you are fixing something around our global build.) | ||
|
Oops, something went wrong.