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

[GH-54] sync with latest mattermost-plugin-starter-template #68

Merged
merged 29 commits into from
Sep 3, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
321dfe9
sync with latest starter-template files
jfrerich Jul 27, 2020
ae567e0
update local-prefixes
jfrerich Jul 28, 2020
12eb78f
fix goimports lint error
jfrerich Jul 28, 2020
c70fc75
add build/sync/plan.yml file
jfrerich Jul 29, 2020
e111387
add build/sync/plan.yml file
jfrerich Jul 29, 2020
23f6440
udpate to latest starter-tempalte
jfrerich Jul 29, 2020
0013910
update .editorconfig and .eslintrc.json to match starter-template.\n …
jfrerich Jul 29, 2020
7792efd
update package.json files
jfrerich Jul 29, 2020
6c7243c
sync with latest mm-plugin-demo
jfrerich Aug 3, 2020
3930958
remove commented lines. \nUpdate to include package.json and webpack.…
jfrerich Aug 3, 2020
6373592
update with latest starter-template
jfrerich Aug 3, 2020
a8d561a
fix linting errors
jfrerich Aug 3, 2020
69b8c91
add sockepath checking
jfrerich Aug 3, 2020
8cc11cb
remove file
jfrerich Aug 3, 2020
20dbbb7
update server version to to get models includes in previous commit
jfrerich Aug 3, 2020
6e90ee2
go mod tidy
jfrerich Aug 3, 2020
96b9b95
add react-bootstrap
jfrerich Aug 3, 2020
08e778a
Merge branch 'master' into GH-54-make-apply
jfrerich Aug 3, 2020
47521ee
add mattermost-redux package
jfrerich Aug 3, 2020
94b73d1
add react-select package
jfrerich Aug 3, 2020
1f1fa54
fix golangci-lint error
jfrerich Aug 3, 2020
a1ca3da
npm install --save react-dom
jfrerich Aug 3, 2020
591c544
update min_server_version with make apply
jfrerich Aug 3, 2020
b4379e2
remove build/bin dir
jfrerich Aug 3, 2020
9e76826
compbine commone paths
jfrerich Aug 4, 2020
4f2061d
remove constants/manifest.js
jfrerich Aug 12, 2020
a1a3145
Merge branch 'master' into GH-54-make-apply
jfrerich Aug 12, 2020
0fd40c2
update after merging master
jfrerich Aug 12, 2020
93d55b1
Merge branch 'master' into GH-54-make-apply
jfrerich Aug 21, 2020
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
21 changes: 4 additions & 17 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
# EditorConfig is awesome: http://editorConfig.org
# Usage with your editor: http://editorconfig.org/#download
# http://editorconfig.org/

# Top-most EditorConfig file
root = true

[*]
Expand All @@ -17,25 +15,14 @@ indent_style = tab
indent_style = space
indent_size = 4

[webapp/.eslintrc.json]
indent_style = space
indent_size = 2

# The indentation in package.json will always need to be 2 spaces
# https://github.com/npm/npm/issues/4718
[package*.json]
indent_style = space
[webapp/package.json]
indent_size = 2

[{Makefile,*.mk}]
[Makefile,*.mk]
indent_style = tab

[*.css]
indent_size = 2
indent_style = space

[*.md]
indent_style = space
indent_size = 4
# Don't trim trailing whitespace in Markdown (they are used to force line breaks)
trim_trailing_whitespace = false

62 changes: 62 additions & 0 deletions .golangci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
run:
timeout: 5m
modules-download-mode: readonly

linters-settings:
goconst:
min-len: 2
min-occurrences: 2
gofmt:
simplify: true
goimports:
local-prefixes: github.com/mattermost/mattermost-plugin-confluence
golint:
min-confidence: 0
govet:
check-shadowing: true
enable-all: true
misspell:
locale: US

linters:
disable-all: true
enable:
- bodyclose
- deadcode
- errcheck
- goconst
- gocritic
- gofmt
- goimports
- golint
- gosec
- gosimple
- govet
- ineffassign
- interfacer
- misspell
- nakedret
- staticcheck
- structcheck
- stylecheck
- typecheck
- unconvert
- unused
- varcheck
- whitespace

issues:
exclude-rules:
- path: server/manifest.go
linters:
- deadcode
- unused
- varcheck
- path: server/configuration.go
linters:
- unused
- path: _test\.go
linters:
- bodyclose
- goconst
- scopelint # https://github.com/kyoh86/scopelint/issues/4
Loading