Skip to content
This repository has been archived by the owner on Sep 4, 2023. It is now read-only.

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
ivarprudnikov committed Aug 15, 2018
0 parents commit ef877b2
Show file tree
Hide file tree
Showing 4 changed files with 48 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .editorconfig
@@ -0,0 +1,15 @@
# http://editorconfig.org

root = true

[*]
charset = utf-8
indent_style = space
indent_size = 2
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true

[*.html]
indent_style = space
indent_size = 2
10 changes: 10 additions & 0 deletions .eslintrc.js
@@ -0,0 +1,10 @@
module.exports = {
extends: "eslint:recommended",
parserOptions: {
ecmaVersion: 6
},
env: {
browser: true,
node: true
},
};
10 changes: 10 additions & 0 deletions .gitignore
@@ -0,0 +1,10 @@
.tmp
dist/
node_modules/
.sass-cache
.idea
*.iml
*.DS_Store
*.log
.project
.elasticbeanstalk/
13 changes: 13 additions & 0 deletions package.json
@@ -0,0 +1,13 @@
{
"name": "webpack-static-html-pages",
"version": "1.0.0",
"description": "Example of a static website assembled by using webpack v4",
"keywords": [
"webpack",
"static",
"starter",
"html",
"pages"
],
"license": "MIT"
}

0 comments on commit ef877b2

Please sign in to comment.