Skip to content

Instantly share code, notes, and snippets.

View rsurjano's full-sized avatar
:octocat:
Business & Code!

Roy Carlos rsurjano

:octocat:
Business & Code!
View GitHub Profile
module.exports = {
extends: [
'plugin:@typescript-eslint/recommended',
'plugin:prettier/recommended',
'prettier',
'prettier/@typescript-eslint',
],
parser: '@typescript-eslint/parser',
plugins: ['simple-import-sort', '@typescript-eslint', 'prettier'],
env: {
# Editor configuration, see https://editorconfig.org
root = true
[*]
charset = utf-8
indent_style = space
indent_size = 2
insert_final_newline = true
trim_trailing_whitespace = true
end_of_line = auto
@rsurjano
rsurjano / addons.js
Created December 11, 2019 20:47
Storybook configuration - for stenciljs
import '@storybook/addon-actions/register';
import "@storybook/addon-jest/register";
import '@storybook/addon-viewport/register';
import '@storybook/addon-a11y/register';
import 'storybook-readme/register';
import '@storybook/addon-knobs/register';
import '@storybook/addon-backgrounds/register';
# PURGING S3 BUCKET
aws s3 rm s3://llamabus.pe --recursive
#UPLOADING TO S3
aws s3 sync ./packages/llamabus-front/public/ s3://llamabus.pe \
--exclude "*" \
--include "*.js" --acl "public-read" --cache-control "max-age=31536000" --content-encoding gzip \
--include "*.html" --acl "public-read" --cache-control "max-age=31536000" --content-encoding gzip \
--include "*.css" --acl "public-read" --cache-control "max-age=31536000" --content-encoding gzip \
--include "*.svg" --acl "public-read" --cache-control "max-age=31536000" --content-encoding gzip \
--include "*.json" --acl "public-read" --cache-control "max-age=31536000" --content-encoding gzip