-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Adding knip * adding prettier back and making things pretty * add prettier format * Revert yarn file * Revert moment * adding react-router-dom back * adding ts-node back * fixing linter
- Loading branch information
1 parent
a2d6ad5
commit b4b989f
Showing
18 changed files
with
557 additions
and
528 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -1,16 +1,15 @@ | ||
# Basic set up for three package managers | ||
version: 2 | ||
updates: | ||
|
||
# Maintain dependencies for GitHub Actions | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
- package-ecosystem: 'github-actions' | ||
directory: '/' | ||
schedule: | ||
interval: "monthly" | ||
interval: 'monthly' | ||
|
||
# Maintain dependencies for npm | ||
- package-ecosystem: "npm" | ||
directory: "/" | ||
- package-ecosystem: 'npm' | ||
directory: '/' | ||
schedule: | ||
interval: "monthly" | ||
open-pull-requests-limit: 5 | ||
interval: 'monthly' | ||
open-pull-requests-limit: 5 |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
module.exports = { | ||
// Prettier configuration provided by Grafana scaffolding | ||
...require("./.config/.prettierrc.js") | ||
}; | ||
...require('./.config/.prettierrc.js'), | ||
}; |
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
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 |
---|---|---|
@@ -1,24 +1,16 @@ | ||
{ | ||
"ignorePaths": [ | ||
"node_modules/**", | ||
"dist/**", | ||
"src/external/**", | ||
"provisioning/**", | ||
"package.json" | ||
], | ||
"words": [ | ||
"gdev", | ||
"grafana", | ||
"datasource", | ||
"datasources", | ||
"rgba", | ||
"countup", | ||
"Themeable", | ||
"Unthemed", | ||
"testdata", | ||
"testid" | ||
], | ||
"ignoreRegExpList": [ | ||
"@[\\w]+" | ||
] | ||
"ignorePaths": ["node_modules/**", "dist/**", "src/external/**", "provisioning/**", "package.json"], | ||
"words": [ | ||
"gdev", | ||
"grafana", | ||
"datasource", | ||
"datasources", | ||
"rgba", | ||
"countup", | ||
"Themeable", | ||
"Unthemed", | ||
"testdata", | ||
"testid" | ||
], | ||
"ignoreRegExpList": ["@[\\w]+"] | ||
} |
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 |
---|---|---|
@@ -1,4 +1,3 @@ | ||
|
||
services: | ||
grafana: | ||
container_name: 'grafana-clock-panel' | ||
|
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,11 @@ | ||
{ | ||
"$schema": "https://unpkg.com/knip@5/schema.json", | ||
"entry": ["src/module.{js,ts,tsx}"], | ||
"project": ["src/**/*", "tests/**/*", ".config/**/*"], | ||
"eslint": { | ||
"config": [".config/.eslintrc", "./.eslintrc"] | ||
}, | ||
"webpack": { | ||
"config": [".config/webpack/webpack.config.ts"] | ||
} | ||
} |
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
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 |
---|---|---|
|
@@ -2,4 +2,4 @@ apiVersion: 1 | |
|
||
datasources: | ||
- name: ClockTestData | ||
type: testdata | ||
type: testdata |
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.