Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/timneutkens/website
basement.studio marketing website :)
https://github.com/timneutkens/website
Last synced: 21 days ago
JSON representation
basement.studio marketing website :)
- Host: GitHub
- URL: https://github.com/timneutkens/website
- Owner: timneutkens
- Created: 2019-07-18T10:43:05.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-07-18T17:57:18.000Z (over 5 years ago)
- Last Synced: 2024-12-10T13:52:30.445Z (about 1 month ago)
- Language: JavaScript
- Homepage: https://basement.studio
- Size: 27.2 MB
- Stars: 7
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# basement.studio
This is our website's code.
## Set up
1 - Install [standard](https://standardjs.com/)
- if you're on VSCode also install [vscode-standardjs](https://marketplace.visualstudio.com/items?itemName=chenxsan.vscode-standardjs)
- if you're on Atom install [linter-js-standard](https://atom.io/packages/linter-js-standard)
- if you're on Sublime Text install [StandardFormat](https://packagecontrol.io/packages/StandardFormat)
2 - Set your `settings.json` accordingly:```JSON
{
"css.lint.duplicateProperties": "warning",
"css.lint.idSelector": "warning",
"css.lint.zeroUnits": "warning",
"editor.tabSize": 2,
"editor.wordWrap": "on",
"editor.multiCursorModifier": "ctrlCmd",
"editor.cursorBlinking": "solid",
"editor.renderWhitespace": "all",
"editor.minimap.showSlider": "always",
"editor.formatOnSave": true,
"editor.foldingStrategy": "indentation",
"editor.fontLigatures": true,
"eslint.autoFixOnSave": true,
"eslint.alwaysShowStatus": true,
"eslint.packageManager": "yarn",
"explorer.confirmDragAndDrop": false,
"explorer.confirmDelete": false,
"extensions.ignoreRecommendations": false,
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
"emmet.triggerExpansionOnTab": true,
"files.associations": {
"*.js": "javascriptreact"
},
"files.autoGuessEncoding": true,
"files.encoding": "utf8",
"files.trimTrailingWhitespace": true,
"files.exclude": {
"**/.DS_Store": true,
"**/.git": true,
"**/.hg": true,
"**/.next": true,
"**/.svn": true,
"**/CVS": true,
"**/node_modules": true
},
"git.confirmSync": false,
"git.autofetch": true,
"javascript.validate.enable": false,
"[javascript]": {
"editor.formatOnSave": false
},
"[javascriptreact]": {
"editor.formatOnSave": false
},
"npm.fetchOnlinePackageInfo": false,
"prettier.disableLanguages": ["javascript", "javascriptreact"],
"standard.autoFixOnSave": true,
"telemetry.enableTelemetry": false,
"window.restoreFullscreen": true,
"window.zoomLevel": 0,
"workbench.startupEditor": "newUntitledFile",
"workbench.activityBar.visible": true,
"workbench.editor.enablePreviewFromQuickOpen": false,
"workbench.editor.showTabs": true,
"workbench.fontAliasing": "auto",
"workbench.editor.tabSizing": "shrink"
}
```3 - Clone the repo to your desktop using `git clone`
4 - Create a branch using `git checkout -b`
5 - Do your thing
6 - Ask for code reviews in a pull request and merge once everything is ok!
7 - Go play some [Windjammers](https://en.wikipedia.org/wiki/Windjammers_(video_game))