Skip to content

Commit

Permalink
Added skeleton files
Browse files Browse the repository at this point in the history
  • Loading branch information
Eleazar Meza committed Feb 5, 2020
1 parent 0321767 commit b5e55da
Show file tree
Hide file tree
Showing 9 changed files with 7,099 additions and 1 deletion.
1 change: 1 addition & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
dist
18 changes: 18 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"env": {
"browser": true,
"es6": true,
"jest": true
},
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
},
"extends": ["airbnb-base"],
"rules": {
"no-shadow": "off",
"no-param-reassign": "off",
"eol-last": "off",
"arrow-parens": "off"
}
}
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,6 @@ typings/

# Nuxt.js build / generate output
.nuxt
dist

# Gatsby files
.cache/
Expand Down
15 changes: 15 additions & 0 deletions .stickler.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# add the linters you want stickler to use for this project
linters:
eslint:
# indicate where is the config file for stylelint
config: './.eslintrc.json'

# add the files here you want to be ignored by stylelint
files:
ignore:
- 'dist/*'

# PLEASE DO NOT enable auto fixing options
# if you need extra support from you linter - do it in your local env as described in README for this config

# find full documentation here: https://stickler-ci.com/docs
11 changes: 11 additions & 0 deletions dist/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
<script defer src="bundle.js"></script>
<title>JS Weather</title>
</head>
<body>
</body>
</html>
Loading

0 comments on commit b5e55da

Please sign in to comment.