-
Notifications
You must be signed in to change notification settings - Fork 1
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
Remove backend code #1
Changes from 3 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"extends": ["@grafana/eslint-config"], | ||
"root": true, | ||
"plugins": ["no-only-tests", "@emotion", "lodash"], | ||
"rules": { | ||
"no-only-tests/no-only-tests": "error", | ||
"react/prop-types": "off", | ||
"@emotion/jsx-import": "error", | ||
"lodash/import-scope": [2, "member"] | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
module.exports = { | ||
trailingComma: 'es5', | ||
singleQuote: true, | ||
printWidth: 120, | ||
...require('@grafana/toolkit/src/config/prettier.plugin.config.json'), | ||
}; |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,7 +32,7 @@ func Drone() error { | |
return err | ||
} | ||
|
||
if err := sh.RunV("drone", "--server", "https://drone.grafana.net", "sign", "--save", "grafana/grafana-plugin-sdk-go"); err != nil { | ||
if err := sh.RunV("drone", "--server", "https://drone.grafana.net", "sign", "--save", "grafana/grafana-aws-sdk-react"); err != nil { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Do we need to have this file for Drone? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Not really, it was just out of convenience to not having to remember the whole drone command but I can just add it to the docs. |
||
return err | ||
} | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,5 @@ | ||
module github.com/grafana/grafana-aws-sdk | ||
module github.com/grafana/grafana-aws-sdk-react | ||
|
||
go 1.14 | ||
go 1.17 | ||
|
||
require ( | ||
github.com/aws/aws-sdk-go v1.35.30 | ||
github.com/google/go-cmp v0.5.6 | ||
github.com/grafana/grafana-plugin-sdk-go v0.94.0 | ||
github.com/grafana/sqlds/v2 v2.3.2 | ||
github.com/jpillora/backoff v1.0.0 | ||
github.com/magefile/mage v1.11.0 | ||
github.com/stretchr/testify v1.7.0 | ||
) | ||
require github.com/magefile/mage v1.11.0 |
Large diffs are not rendered by default.
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
just curious what inspired the need to extend what we have? Seems like we'd want to keep things more or less in line with whatever the defaults right?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I just copied this from the root of grafana/grafana but I guess it's not really that needed. I can just use the default.