Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bounties.network redesign implementation Q3 2018 #8

Merged
merged 26 commits into from
Aug 15, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# EditorConfig http://editorconfig.org

root = true

[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
41 changes: 41 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
/*

# eslint

http://eslint.org
https://prettier.io
https://github.com/prettier/eslint-plugin-prettier
https://github.com/prettier/eslint-config-prettier

*/

let opts = {
env: {
browser: true,
commonjs: true,
es6: true,
node: true
},
extends: ['eslint:recommended', 'plugin:prettier/recommended'],
plugins: ['prettier'],
parserOptions: {
ecmaVersion: 2015
},
rules: {
indent: ['error', 2],
'linebreak-style': ['error', 'unix'],
// quotes: ['error', 'single'],
semi: ['error', 'never'],
// --fix automatically converts `var` to `let`
'no-var': ['error'],
'prettier/prettier': 'error'
},
globals: {
describe: true,
it: true,
xit: true,
should: true
}
}

module.exports = opts
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
.DS_Store
*.sublime-*
node_modules
tmp
dist
backup
.eslintcache
1 change: 0 additions & 1 deletion CNAME

This file was deleted.

25 changes: 24 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,25 @@
# bounties.network
the website for bounties.network

The website project for https://bounties.network

## Development

```sh
# clone
git clone https://github.com/Bounties-Network/bounties.network.git
cd bounties.network

# install dependencies
npm install

# development watching for changes
npm run dev

# build and compact for production
npm run prd
```

## Resources

+ flexboxgrid https://flexboxgrid.com/
+ gulp https://gulpjs.com/
4 changes: 0 additions & 4 deletions assets/css/font-awesome.min.css

This file was deleted.

66 changes: 0 additions & 66 deletions assets/css/ie8.css

This file was deleted.

62 changes: 0 additions & 62 deletions assets/css/ie9.css

This file was deleted.

Binary file removed assets/css/images/overlay.png
Binary file not shown.
Loading