Skip to content
This repository has been archived by the owner on Mar 19, 2024. It is now read-only.

Commit

Permalink
Init the project
Browse files Browse the repository at this point in the history
  • Loading branch information
dreit-p committed Nov 1, 2020
0 parents commit 00dc0b2
Show file tree
Hide file tree
Showing 34 changed files with 852 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"presets": ["@babel/preset-env"]
}
8 changes: 8 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
root = true

[*]
indent_style = tab
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
1 change: 1 addition & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
src/**/*.pug
25 changes: 25 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"root": true,
"env": {
"node": true,
"browser": true,
"es6": true
},
"extends": [
"eslint:recommended"
],
"plugins": [
"pug"
],
"rules": {
"indent": ["error", "tab"],
"no-console": ["warn", { "allow": ["warn", "error", "info"] } ],
"no-debugger": "error",
"no-irregular-whitespace": ["error", { "skipTemplates": true, "skipStrings": true }],
},
"parserOptions": {
"sourceType": "module",
"ecmaVersion": 6,
"parser": "babel-eslint"
}
}
31 changes: 31 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
.DS_Store
node_modules
dist
Thumbs.db
.Trashes
desktop.ini
.cache
yarn.lock

# local env files
.env.local
.env.*.local

# Log files
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Editor directories and files
.idea
.vscode
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw*

# generated
/**/sprite.*.svg
assets/symbol/
critical
17 changes: 17 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
softezza (frontend part)

# Softezza

## Project setup
`yarn`

### Compiles and hot-reloads for development
`yarn gulp`

### Compiles and minifies for production
`yarn gulp build`

### Create critical styles for pages
`yarn gulp critical`

All environment variables are defined in `gulpfile.js`
Loading

0 comments on commit 00dc0b2

Please sign in to comment.