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

Add spellcheck and fix misspellings #158

Merged
merged 2 commits into from
Dec 12, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
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
97 changes: 97 additions & 0 deletions cspell.config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,97 @@
{
"ignorePaths": [
".github/**",
"node_modules/**",
"dist/**",
"cypress/**",
"provisioning/**",
"src/dashboards/**",
"src/utils/transform.test.ts",
"yarn.lock",
"go.sum",
"mage_output_file.go"
],
"words": [
"awsds",
"Codeowners",
"datasource",
"datasources",
"datetime",
"gotest",
"grafana",
"gtime",
"httpclient",
"sess",
"logm",
"sdkhttpclient",
"stretchr",
"testid",
"timeseries",
"Workgroups",
"inlinesvg",
"nexttoken",
"sunker",
"yota",
"fridgepoet",
"andresmgot",
"vgkowski",
"backoff",
"barbar",
"JDBC",
"ODBC",
"codebases",
"fillmode",
"nekketsuuu",
"timefilter",
"armhf",
"squalou",
"plugincheck",
"millis",
"instancemgmt",
"tcfg",
"cerr",
"testdata",
"xlarge",
"sqltxt",
"numtext",
"vals",
"checkstate",
"templating",
"Templating",
"tsdb",
"decbytes",
"onloaddatabase",
"timetamp",
sunker marked this conversation as resolved.
Show resolved Hide resolved
"onloaddatabase",
"consts",
"tsdb",
"onloaddatabase",
"onloadtable",
"onloadmeasure",
"consts",
"iwysiu",
"yaelle",
"prismjs",
"httpadapter",
"errgroup",
"dataframe",
"Normalised",
"unmarshals",
"xraydatasource",
"undescriptive",
"relref",
"responsetime",
"BEGINSWITH",
"clientip",
"Cascader",
"isob",
"prismjs",
"Typeahead",
"Dataframe",
"Visualisation",
"mediumpurple",
"availabilityzone",
"ENDSWITH",
"dataframes"
]
}
2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"version": "2.2.0",
"description": "AWS X-Ray data source",
"scripts": {
"spellcheck": "cspell -c cspell.config.json \"**/*.{ts,tsx,js,go,md,mdx,yml,yaml,json,scss,css}\"",
"build": "grafana-toolkit plugin:build",
"test": "grafana-toolkit plugin:test",
"test:coverage": "jest --coverage",
Expand All @@ -22,6 +23,7 @@
"@types/lodash": "latest",
"@types/prismjs": "1.16.0",
"@types/slate": "0.47.1",
"cspell": "6.13.3",
"jest-environment-jsdom-sixteen": "^1.0.3"
},
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion pkg/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (

func main() {
// Start listening to requests send from Grafana. This call is blocking so
// it won't finish until Grafana shutsdown the process or the plugin choose
// it won't finish until Grafana shuts down the process or the plugin choose
// to exit close down by itself
err := datasource.Serve(xraydatasource.GetServeOpts())

Expand Down
Loading