-
-
Notifications
You must be signed in to change notification settings - Fork 99
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 #59 from jakowenko/beta
v0.7.0
- Loading branch information
Showing
33 changed files
with
5,779 additions
and
3,754 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,28 @@ | ||
module.exports = { | ||
root: true, | ||
env: { | ||
amd: true, | ||
}, | ||
extends: ["airbnb-base", "plugin:prettier/recommended"], | ||
plugins: ["prettier"], | ||
rules: { | ||
"linebreak-style": 0, | ||
"no-console": 0, | ||
"no-plusplus": 0, | ||
"max-len": 0, | ||
"no-return-assign": 0, | ||
"no-await-in-loop": 0, | ||
indent: 0, // Allowing prettier to handle this | ||
"consistent-return": 0, | ||
"comma-dangle": 0, | ||
"operator-linebreak": 0, | ||
"implicit-arrow-linebreak": 0, | ||
"function-paren-newline": 0, | ||
"object-curly-newline": 0, | ||
"newline-per-chained-call": 0, | ||
"prettier/prettier": "error", | ||
"no-param-reassign": 0, | ||
"no-restricted-syntax": 0, | ||
"no-nested-ternary": 0, | ||
}, | ||
}; |
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 @@ | ||
_ |
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 @@ | ||
npx --no-install commitlint --edit $1 |
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 @@ | ||
{ | ||
"tabWidth": 2, | ||
"printWidth": 100, | ||
"singleQuote": true, | ||
"trailingComma": "es5" | ||
} |
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,4 +1,5 @@ | ||
module.exports = { | ||
root: true, | ||
env: { | ||
amd: true, | ||
}, | ||
|
Oops, something went wrong.