Skip to content

Commit

Permalink
docs v2 preview
Browse files Browse the repository at this point in the history
  • Loading branch information
harrysolovay committed Mar 4, 2020
1 parent 0808418 commit 15917b9
Show file tree
Hide file tree
Showing 1,463 changed files with 57,897 additions and 76,145 deletions.
22 changes: 0 additions & 22 deletions .circleci/config.yml

This file was deleted.

15 changes: 15 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# http://editorconfig.org

root = true

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

[*.md]
insert_final_newline = false
trim_trailing_whitespace = false
67 changes: 67 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
{
"env": {
"node": true
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking",
"plugin:@stencil/recommended",
"prettier",
"prettier/@typescript-eslint",
"plugin:prettier/recommended"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"createDefaultProgram": true,
"ecmaVersion": 2017,
"project": "tsconfig.json",
"sourceType": "module"
},
"plugins": ["@typescript-eslint", "@stencil", "prettier"],
"root": true,
"rules": {
"@stencil/async-methods": 2,
"@stencil/ban-prefix": [2, ["stencil", "stnl", "st"]],
"@stencil/ban-side-effects": 0,
"@stencil/decorators-context": 2,
"@stencil/decorators-style": [
2,
{
"element": "inline",
"event": "inline",
"listen": "multiline",
"method": "multiline",
"prop": "inline",
"state": "inline",
"watch": "multiline"
}
],
"@stencil/element-type": 2,
"@stencil/host-data-deprecated": 2,
"@stencil/methods-must-be-public": 2,
"@stencil/no-unused-watch": 2,
"@stencil/own-methods-must-be-private": 0,
"@stencil/own-props-must-be-private": 0,
"@stencil/prefer-vdom-listener": 2,
"@stencil/props-must-be-public": 2,
"@stencil/props-must-be-readonly": 2,
"@stencil/render-returns-host": 2,
"@stencil/required-jsdoc": 2,
"@stencil/reserved-member-names": 2,
"@stencil/single-export": 2,
"@stencil/strict-boolean-conditions": 0,
"@stencil/strict-mutable": 2,
"@typescript-eslint/ban-ts-ignore": 0,
"@typescript-eslint/explicit-function-return-type": 0,
"@typescript-eslint/no-explicit-any": 0,
"@typescript-eslint/no-for-in-array": 0,
"@typescript-eslint/no-misused-promises": 0,
"@typescript-eslint/no-unnecessary-type-assertion": 0,
"@typescript-eslint/no-unused-vars": 0,
"@typescript-eslint/no-use-before-define": 0,
"arrow-parens": [1, "always"],
"no-console": 1
}
}
22 changes: 22 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Test
on:
push:
branches:
- "*"
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@master
- name: Setup Node.js 10.x
uses: actions/setup-node@master
with:
node-version: 10.x
- name: Install Dependencies
run: yarn
- name: Run Initial Build
run: yarn build
- name: Run Test Script
run: yarn test
64 changes: 62 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,63 @@
_site/
dist/
!www/favicon.ico
www/
*~
*.sw[mnpcod]
*.log
*.lock
*.tmp
*.tmp.*
log.txt
*.sublime-project
*.sublime-workspace
.stencil
.idea
.sass-cache
.versions
node_modules
.DS_Store
$RECYCLE.BIN
.DS_Store
Thumbs.db
UserInterfaceState.xcuserstate
.env
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
nbproject
.buildpath
.idea
.project
.settings
.vs
.vscode
composer.lock
*.swp
*.swo
node_modules
.node_modules
package-lock.json
*.log
.versions
generated
capi/src/__tests__/*/api
capi/src/__tests__/*/www
client/src/api
client/src/assets

#amplify
amplify/\#current-cloud-backend
amplify/.config/local-*
amplify/mock-data
amplify/backend/amplify-meta.json
amplify/backend/awscloudformation
build/
dist/
node_modules/
client/src/aws-exports.js
client/src/aws-exports.ts
awsconfiguration.json
amplifyconfiguration.json
amplify-gradle-config.json
amplifyxc.config
2 changes: 2 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
README.md
docs
13 changes: 13 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"arrowParens": "always",
"bracketSpacing": false,
"jsxBracketSameLine": false,
"jsxSingleQuote": false,
"printWidth": 80,
"proseWrap": "never",
"semi": true,
"singleQuote": false,
"tabWidth": 2,
"trailingComma": "all",
"useTabs": false
}

0 comments on commit 15917b9

Please sign in to comment.