forked from jhildenbiddle/css-vars-ponyfill
-
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
7fc982a
commit 6c44a51
Showing
34 changed files
with
13,899 additions
and
1 deletion.
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,39 @@ | ||
module.exports = { | ||
"env": { | ||
"browser" : true, | ||
"commonjs": true, | ||
"es6" : true, | ||
"node" : true | ||
}, | ||
"extends": "eslint:recommended", | ||
"plugins": [], | ||
"parserOptions": { | ||
"sourceType" : "module" | ||
}, | ||
"rules": { | ||
"array-bracket-spacing" : ["error", "never"], | ||
"array-callback-return" : ["error"], | ||
"block-scoped-var" : ["error"], | ||
"block-spacing" : ["error", "always"], | ||
"curly" : ["error"], | ||
"dot-notation" : ["error"], | ||
"eqeqeq" : ["error"], | ||
"indent" : ["error", 4], | ||
"linebreak-style" : ["error", "unix"], | ||
"no-console" : ["warn"], | ||
"no-floating-decimal" : ["error"], | ||
"no-implicit-coercion" : ["error"], | ||
"no-implicit-globals" : ["error"], | ||
"no-loop-func" : ["error"], | ||
"no-return-assign" : ["error"], | ||
"no-template-curly-in-string": ["error"], | ||
"no-unneeded-ternary" : ["error"], | ||
"no-unused-vars" : ["error", { "args": "none" }], | ||
"no-useless-computed-key" : ["error"], | ||
"no-useless-return" : ["error"], | ||
"no-var" : ["error"], | ||
"prefer-const" : ["error"], | ||
"quotes" : ["error", "single"], | ||
"semi" : ["error", "always"] | ||
} | ||
}; |
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 @@ | ||
# Folders | ||
coverage | ||
node_modules | ||
|
||
# Files | ||
*.log | ||
|
||
# OS | ||
._* | ||
.cache | ||
.DS_Store |
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,13 @@ | ||
language: node_js | ||
node_js: "stable" | ||
|
||
notifications: | ||
email: false | ||
|
||
before_install: | ||
- stty cols 80 | ||
|
||
script: "npm run test-remote" | ||
|
||
after_success: | ||
- bash <(curl -s https://codecov.io/bash) -e TRAVIS_NODE_VERSION |
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,7 @@ | ||
# Change Log | ||
|
||
## 1.0.0 - 2017-11-26 | ||
|
||
**Added** | ||
|
||
- Initial release |
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.