Skip to content

Commit

Permalink
- added .gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
saheelahmed2 committed Aug 29, 2021
1 parent 2ac360f commit 91de6bd
Show file tree
Hide file tree
Showing 5 changed files with 16,201 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# EditorConfig is awesome: https://EditorConfig.org

# top-most EditorConfig file
root = true

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

# Files with two-space indent
[*.{js,jsx,ts,tsx,yml,json,mdx}]
indent_size = 2

# Tab indentation
[Makefile]
indent_style = tab
69 changes: 69 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage

# nyc test coverage
.nyc_output

# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
bower_components

# node-waf configuration
.lock-wscript

# Compiled binary addons (http://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules
jspm_packages
**/node_modules/**

# Typescript v1 declaration files
typings/

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# dotenv environment variables file
.env
.env.*
!.env.example

.cache
**/.cache
public

.idea
.vscode
.DS_Store
4 changes: 4 additions & 0 deletions .prettierrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"trailingComma": "es5",
"printWidth": 80
}
17 changes: 17 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
language: node_js
before_script:
- npm install -g gatsby-cli
node_js:
- "14"
# branches:
# except:
# # Built Gatsby source
# - main
deploy:
provider: script
script: yarn install && yarn run deploy-ci
skip_cleanup: true
# I use 'source' instead of 'master' as the default working branch because
# 'master' is where Github Pages needs the built site to live for a user site
on:
branch: source
Loading

0 comments on commit 91de6bd

Please sign in to comment.