Skip to content

Commit

Permalink
feature(youtube): Created factory function to support YouTube videos
Browse files Browse the repository at this point in the history
  • Loading branch information
Rafael Miranda committed Sep 13, 2018
1 parent c541538 commit fb59d75
Show file tree
Hide file tree
Showing 7 changed files with 7,989 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"comments": false,
"presets": [
[
"@babel/preset-env",
{
"targets": "last 5 versions, ie >= 11"
}
]
]
}
41 changes: 41 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
{
"env": {
"es6": true,
"browser": true
},
"extends": "airbnb-base",
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
},
"rules": {
"no-console": 0,
"no-undef" : 0,
"no-case-declarations": 0,
"no-empty": 0,
"object-curly-spacing": 0,
"import/no-dynamic-require": 0,
"global-require": 0,
"func-names": 0,
"no-plusplus": 0,
"no-param-reassign": 0,
"no-restricted-properties": 0,
"no-template-curly-in-string": 0,
"arrow-parens": [2, "as-needed"],
"comma-dangle": [2, {
"functions": "ignore",
"objects": "ignore",
"arrays": "ignore"
}],
"prefer-destructuring": 0,
"no-restricted-globals": 0,
"indent": [2, 4, {"SwitchCase": 1}],
"max-len": [2, 140, 4, {
"ignoreUrls": true,
"ignoreComments": true,
"ignorePattern": "true"
}],
"no-underscore-dangle": 0,
"no-bitwise": 0
}
}
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
node_modules/
.vscode/
.idea/
dist/
Loading

0 comments on commit fb59d75

Please sign in to comment.