-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1382 from thematters/develop
Release: v3.12.0
- Loading branch information
Showing
142 changed files
with
1,280 additions
and
663 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# dev team is required for all PR reviews | ||
* @thematters/dev | ||
|
||
# data team is required for all analytic related PR reviews | ||
src/components/Analytics/* @thematters/data | ||
src/common/utils/analytics.ts @thematters/data |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# To get started with Dependabot version updates, you'll need to specify which | ||
# package ecosystems to update and where the package manifests are located. | ||
# Please see the documentation for all configuration options: | ||
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates | ||
|
||
version: 2 | ||
updates: | ||
- package-ecosystem: "npm" | ||
directory: "/" | ||
schedule: | ||
interval: "daily" | ||
reviewers: | ||
- "thematters/dev" | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: "daily" | ||
reviewers: | ||
- "thematters/dev" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
**/*.ts | ||
**/*.tsx |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
set nocompatible | ||
|
||
call plug#begin('~/.local/share/nvim/plugged') | ||
|
||
" Plugins | ||
Plug 'scrooloose/nerdtree' | ||
Plug 'jistr/vim-nerdtree-tabs' | ||
Plug 'elzr/vim-json' | ||
Plug 'mattn/emmet-vim' | ||
Plug 'dense-analysis/ale' | ||
Plug 'yardnsm/vim-import-cost', { 'do': 'npm install' } | ||
Plug 'mileszs/ack.vim' | ||
|
||
Plug 'docker/docker' , {'rtp': '/contrib/syntax/vim/'} | ||
Plug 'leafgarland/typescript-vim' | ||
Plug 'peitalin/vim-jsx-typescript' | ||
Plug 'jparise/vim-graphql' | ||
Plug 'sbdchd/neoformat' | ||
Plug 'tpope/vim-cucumber' | ||
|
||
call plug#end() | ||
|
||
set number | ||
set encoding=utf-8 | ||
set fileencoding=utf-8 | ||
set mouse-=a | ||
set clipboard+=unnamed | ||
syntax on | ||
|
||
" NERDTree | ||
let NERDTreeAutoDeleteBuffer = 1 | ||
let NERDTreeMinimalUI = 1 | ||
let NERDTreeShowHidden = 1 | ||
let NERDTreeShowLineNumbers = 1 | ||
let NERDTreeWinSize = 50 | ||
|
||
" NERDTree-tabs | ||
let g:nerdtree_tabs_open_on_console_startup = 1 | ||
|
||
" Ale | ||
let g:airline#extensions#ale#enabled = 1 | ||
|
||
" import cost | ||
augroup import_cost_auto_run | ||
autocmd! | ||
autocmd InsertLeave *.js,*.jsx,*.ts,*.tsx ImportCost | ||
autocmd BufEnter *.js,*.jsx,*.ts,*.tsx ImportCost | ||
autocmd CursorHold *.js,*.jsx,*.ts,*.tsx ImportCost | ||
augroup END |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.