Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): bump y18n from 3.2.1 to 3.2.2 #22

Open
wants to merge 45 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
45 commits
Select commit Hold shift + click to select a range
b0da7d0
(#1) chore: implement settings of project
luismayta Nov 14, 2019
a673a12
(#1) chore: implement for dependences python
luismayta Nov 14, 2019
dd2ba50
(#1) chore: implement actions for make
luismayta Nov 14, 2019
44a182d
(#1) chore: implement settings for docker
luismayta Nov 14, 2019
40fb22a
(#1) chore: settings docker-compose
luismayta Nov 14, 2019
9b892e3
(#1) chore: implement git jar script
luismayta Nov 14, 2019
1661454
(#1) docs: implement info
luismayta Nov 14, 2019
1016117
(#1) docs: Implement license mit
luismayta Nov 14, 2019
88064d0
(#1) docs: delete fossa status unncesary
luismayta Nov 14, 2019
4e87e43
(#1) docs: implement changelog
luismayta Nov 14, 2019
47bff62
(#1) chore: implement settings for setup
luismayta Nov 14, 2019
d0882c7
(#2) chore: implement zsh history
luismayta Nov 14, 2019
25e6e96
(#2) chore: implement library messages
luismayta Nov 14, 2019
3a8cc1c
(#2) test: implement messages functionality
luismayta Nov 14, 2019
12d397f
(#4) fix: show buffer selected
luismayta Nov 14, 2019
44928be
(#6) chore: implement prettier
luismayta Nov 19, 2019
3a96c09
(#6) fix: command test project
luismayta Nov 19, 2019
ae90f7d
(#6) style: format for docker
luismayta Nov 19, 2019
4fb5392
(#6) refactor: name project
luismayta Nov 19, 2019
270c240
(#6) style: format code for github
luismayta Nov 19, 2019
09dd1d5
(#6) fix: change value of package_name
luismayta Nov 19, 2019
2593b54
(#6) chore: implement parse of cmd
luismayta Nov 19, 2019
5cdc34f
(#6) feat: validation only when package brew
luismayta Nov 19, 2019
1791083
(#8) refactor: settings for project
luismayta Jan 12, 2020
8de756b
(#8) chore: clean unnecesary files
luismayta Jan 12, 2020
9b6d6f0
(#8) chore: delete unnecesary clean
luismayta Jan 12, 2020
07abd43
(#8) refactor: clean load helper messages
luismayta Jan 12, 2020
41a2536
(#8) docs: change info for project
luismayta Jan 12, 2020
1a3aea9
(#8) feat: upgrade year license
luismayta Jan 12, 2020
9ebe976
(#8) style: upgrade info project
luismayta Jan 12, 2020
4cbf8de
(#8) refactor: change validation command with type
luismayta Jan 12, 2020
b85ab9e
refactor: versions hooks for pre-commit (#11)
luismayta Mar 12, 2020
f61a180
refactor: settings docker with make (#11)
luismayta Mar 12, 2020
5c8023a
refactor: packages for lint code (#11)
luismayta Mar 12, 2020
aad2e7f
docs: refactor release and support (#11)
luismayta Mar 12, 2020
97dc55b
style: refactor change info (#11)
luismayta Mar 12, 2020
0f729d8
fix: settings new version (#11)
luismayta Mar 12, 2020
27e432e
feat: clean unnecesary helpers test (#11)
luismayta Mar 12, 2020
816efa9
chore: implement load script shell (#11)
luismayta Mar 12, 2020
b15453f
refactor: change bindkey to R (#11)
luismayta Mar 12, 2020
59506bf
refactor: actions for make (#15)
luismayta Jul 19, 2020
80e8069
refactor: change path core to src (#15)
luismayta Jul 19, 2020
3a94473
refactor: files zsh load (#15)
luismayta Jul 19, 2020
ed5951a
docs: refactor info linkedin (#15)
luismayta Jul 19, 2020
220c1e9
chore(deps): bump y18n from 3.2.1 to 3.2.2
dependabot[bot] Mar 31, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions .bumplus.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
version = '0.0.0'

[[files."CHANGELOG.rst"]]
search = """
`Unreleased`_
+++++++++++++
"""


replace = """
`Unreleased`_
+++++++++++++

`{{new_version}}`_ - {{utcnow | strftime('%Y-%m-%d')}}
++++++++++++++++++++++
"""

[[files."CHANGELOG.rst"]]
search = """
.. _`Unreleased`: https://github.com/luismayta/zsh-history/compare/{{old_version}}...HEAD
"""
replace = """
.. _`Unreleased`: https://github.com/luismayta/zsh-history/compare/{{new_version}}...HEAD
.. _`{{new_version}}`: https://github.com/luismayta/zsh-history/compare/{{old_version}}...{{new_version}}
"""
4 changes: 4 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.*
!.coveragerc
!.env
!.pylintrc
49 changes: 49 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@

# EditorConfig is awesome: http://EditorConfig.org


# top-most EditorConfig file
root = true

# Unix-style newlines with a newline ending every file
[*]
end_of_line = lf
insert_final_newline = false
indent_style = space
# Set default charset
charset = utf-8
trim_trailing_whitespace = true

[*.{el}]
insert_final_newline = false

[*.{el,md,yml,yaml,js,json,toml,ts,tsx}]
indent_style = space
indent_size = 2

# 4 space indentation
[*.{py,sh}]
indent_style = space
indent_size = 4

# Minified JavaScript files shouldn't be changed
[**.min.js]
indent_style = ignore
insert_final_newline = ignore

# Tab indentation (no size specified)
[Makefile]
indent_style = tab

# Indentation override for all JS under lib directory
[*.{el,js,json,md,yml,yaml}]
indent_style = space
indent_size = 2

[*.{make,mk}]
indent_style = tab
indent_size = 4

# Batch files use tabs for indentation
[*.bat]
indent_style = tab
1 change: 1 addition & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
APP_NAME=zsh-history
7 changes: 7 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
node_modules/
build
.next/
storybook-static/
__snapshots__/
out/
prettier.config.js
43 changes: 43 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
const prettierrc = require('@equipindustry/prettierrc');
module.exports = {
parser: 'babel-eslint',
parserOptions: {
ecmaFeatures: {
jsx: true,
},
ecmaVersion: 2018,
sourceType: 'module',
},
rules: {
'prettier/prettier': [
'error',
prettierrc,
{
usePrettierrc: true,
},
],
},
overrides: [
{
files: ['**/*.ts', '**/*.tsx'],
env: { browser: true, es6: true, node: true },
extends: ['@equipindustry/eslint-config'],
parser: '@typescript-eslint/parser',
parserOptions: {
ecmaFeatures: { jsx: true },
ecmaVersion: 2018,
sourceType: 'module',
},
plugins: ['prettier', '@typescript-eslint'],
rules: {
'prettier/prettier': [
'error',
prettierrc,
{
usePrettierrc: true,
},
],
},
},
],
};
149 changes: 149 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,149 @@
# Path-based git attributes

# https://www.kernel.org/pub/software/scm/git/docs/gitattributes.html

## Test/documentation

# Ignore all test and documentation with "export-ignore".
/.gitattributes export-ignore
/.githooks export-ignore
/.gitignore export-ignore
/.travis.yml export-ignore
/.travis.yaml export-ignore
/phpunit.xml.dist export-ignore
/.scrutinizer.yml export-ignore
/.scrutinizer.yaml export-ignore
/tests export-ignore

## Merging
CHANGELOG.md merge=union

## Line endings

### Automatic

# Handle line endings automatically for files detected as text
# and leave all files detected as binary untouched.
* text=auto eol=lf

### Text (should be normalized, convert crlf => lf)

# Source
*.php text eol=lf
*.css text eol=lf
*.sass text eol=lf
*.scss text eol=lf
*.less text eol=lf
*.styl text eol=lf
*.js text eol=lf
*.coffee text eol=lf
*.json text eol=lf
*.htm text eol=lf
*.html text eol=lf
*.xml text eol=lf
*.svg text eol=lf
*.txt text eol=lf
*.ini text eol=lf
*.inc text eol=lf
*.pl text eol=lf
*.rb text eol=lf
*.py text eol=lf
*.scm text eol=lf
*.sql text eol=lf
*.sh text eol=lf
*.bat text eol=lf

# Templates
*.ejs text eol=lf
*.hbt text eol=lf
*.jade text eol=lf
*.haml text eol=lf
*.hbs text eol=lf
*.dot text eol=lf
*.tmpl text eol=lf
*.phtml text eol=lf

*.wadl text eol=lf
*.wsdl text eol=lf

# App config
.env text eol=lf
.env.example text eol=lf
.env.sample text eol=lf

# Server config
.htaccess text eol=lf

# Git config
.gitattributes text eol=lf
.gitignore text eol=lf

# Code analysis config
.jshintrc text eol=lf
.jscsrc text eol=lf
.jshintignore text eol=lf
.csslintrc text eol=lf

# Misc config
*.yaml text eol=lf
*.yml text eol=lf
*.yaml text eol=lf
.editorconfig text eol=lf

# Build config
composer.lock text eol=lf
*.npmignore text eol=lf
*.bowerrc text eol=lf

# Heroku
Procfile text eol=lf
.slugignore text eol=lf

# Documentation
*.md text eol=lf
LICENSE text eol=lf
AUTHORS text eol=lf

# Vagrant
Vagrantfile eol=lf

# Scripts
bin/* text eol=lf

### Binary (left untouched)

# (binary is a macro for -text -diff)
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.ico binary
*.mov binary
*.mp4 binary
*.mp3 binary
*.mwb binary
*.flv binary
*.fla binary
*.swf binary
*.gz binary
*.zip binary
*.7z binary
*.rar binary
*.ttf binary
*.eot binary
*.woff binary
*.woff2 binary
*.otf binary
*.pyc binary
*.pdf binary
*.bz2 binary
*.sh linguist-language=go
*.webm binary
*.class binary
*.dll binary
*.ear binary
*.jar binary
*.so binary
*.war binary
*.xls binary
*.xlsx binary
22 changes: 22 additions & 0 deletions .github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
## The problem

Briefly describe the issue you are experiencing (or the feature you want to see added). Tell us what you were trying to do and what happened instead. Remember, this is _not_ a place to ask questions.

## Environment

- OS: {Please write here}
- Version : {Please write here}

## Details

If necessary, describe the problem you have been experiencing in more detail.

## Link to logs

Create a [GIST](https://gist.github.com) which is a paste of your _full_ logs, and link them here.
Do _NOT_ paste your full logs here, as it will make this issue very long and hard to read!
If you are reporting a bug, _always_ include logs!

## Tasks

- [ ] Task number 1
26 changes: 26 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
## Proposed changes

Describe the big picture of your changes here to communicate to the maintainers why we should accept this pull request. If it fixes a bug or resolves a feature request, be sure to link to that issue.

## Types of changes

What types of changes does your code introduce to Project?
_Put an `x` in the boxes that apply_

- [ ] Bugfix (non-breaking change which fixes an issue)
- [ ] New feature (non-breaking change which adds functionality)
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected)

## Checklist

_Put an `x` in the boxes that apply. You can also fill these out after creating the PR. If you're unsure about any of them, don't hesitate to ask. We're here to help! This is simply a reminder of what we are going to look for before merging your code._

- [ ] I have read the [CONTRIBUTING](/CONTRIBUTING.rst) doc
- [ ] Lint and unit tests pass locally with my changes
- [ ] I have added tests that prove my fix is effective or that my feature works
- [ ] I have added necessary documentation (if appropriate)
- [ ] Any dependent changes have been merged and published in downstream modules

## Further comments

If this is a relatively large or complex change, kick off the discussion by explaining why you chose the solution you did and what alternatives you considered, etc...
Loading