Skip to content

Commit

Permalink
added boilerplate files
Browse files Browse the repository at this point in the history
  • Loading branch information
Acta committed Jul 30, 2018
1 parent 004790e commit e744a9c
Show file tree
Hide file tree
Showing 17 changed files with 17,059 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .compilerc
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"env": {
"development": {
"application/javascript": {
"presets": [
["env", { "targets": { "electron": "1.6.0" } }],
"react"
],
"plugins": ["transform-async-to-generator", "transform-es2015-classes", "react-hot-loader/babel", "transform-class-properties"],
"sourceMaps": "inline"
}
},
"production": {
"application/javascript": {
"presets": [
["env", { "targets": { "electron": "1.6.0" } }],
"react"
],
"plugins": ["transform-async-to-generator", "transform-es2015-classes", "transform-class-properties"],
"sourceMaps": "none"
}
}
}
}
12 changes: 12 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"extends": ["eslint-config-airbnb", "prettier", "prettier/react"],
"rules": {
"import/extensions": 0,
"import/no-extraneous-dependencies": 0,
"import/no-unresolved": [2, {
"ignore": ["electron"]
}],
"linebreak-style": 0,
"react/prefer-stateless-function": 0
}
}
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
node_modules
out
.eslintcache
3 changes: 3 additions & 0 deletions markdown practice files/CHANGELOG_05-06-18.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# on and another one over and over again

says you
11 changes: 11 additions & 0 deletions markdown practice files/README_03-06-18.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# AWS SDK for JavaScript


## Installing

### In the Browser

To use the SDK in the browser, simply add the following script tag to your
HTML pages:

END HERE
31 changes: 31 additions & 0 deletions markdown practice files/README_07-06-18.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# AWS SDK for JavaScript

help to end this pace


[![NPM](https://nodei.co/npm/aws-sdk.svg?downloads=true&downloadRank=true&stars=true)](https://nodei.co/npm/aws-sdk/)

[![Gitter chat](https://badges.gitter.im/gitterHQ/gitter.svg)](https://gitter.im/aws/aws-sdk-js)

[![Version](https://badge.fury.io/js/aws-sdk.svg)](http://badge.fury.io/js/aws-sdk) [![Build Status](https://travis-ci.org/aws/aws-sdk-js.svg?branch=master)](https://travis-ci.org/aws/aws-sdk-js) [![Coverage Status](https://coveralls.io/repos/aws/aws-sdk-js/badge.svg?branch=master)](https://coveralls.io/r/aws/aws-sdk-js?branch=master)

The official AWS SDK for JavaScript, available for browsers and mobile devices,
or Node.js backends

For release notes, see the [CHANGELOG](https://github.com/aws/aws-sdk-js/blob/master/CHANGELOG.md). Prior to v2.4.8, release notes can be found at https://aws.amazon.com/releasenotes/?tag=releasenotes%23keywords%23javascript

<p class="note">
If you are upgrading from 1.x to 2.0 of the SDK, please see the
[upgrading](https://github.com/aws/aws-sdk-js/blob/master/UPGRADING.md) notes
for information on how to migrate existing code to work with the new major
version.
</p>

## Installing

### In the Browser

To use the SDK in the browser, simply add the following script tag to your
HTML pages:

END HERE
Empty file.
Empty file.
1 change: 1 addition & 0 deletions markdown practice files/nagoya_07-28-2018.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
the best
Empty file.
Loading

0 comments on commit e744a9c

Please sign in to comment.