Grunt: Removes grunt dependency and replaces some of its usage (#29461)

* Grunt: Removes grunt dependency and replaces some of it usage with alternatives

* Removed precommit toolkit task

* Fixed toolkit import

* Some cleanup of unused / not working stuff in build.go

* Removed sass errors
This commit is contained in:
Torkel Ödegaard
2020-12-01 10:32:12 +01:00
committed by GitHub
parent 754aca25c5
commit dc93749287
17 changed files with 172 additions and 1314 deletions

View File

@@ -1,6 +1,9 @@
{
"extends": ["@grafana/eslint-config"],
"root": true,
"plugins": [
"no-only-tests"
],
"overrides": [
{
"files": [
@@ -15,10 +18,11 @@
"react/no-unescaped-entities": "off",
"react/display-name": "off",
"react/no-deprecated": "off",
"react/no-unknown-property": "off",
"react/no-unknown-property": "off",
"react/no-children-prop": "off",
"react/no-find-dom-node": "off",
"react/no-render-return-value": "off"
"react/no-render-return-value": "off",
"no-only-tests/no-only-tests": "error"
}
}
]