Both the .json and .yml config formats are deprecated in favor of flat configs exported from eslint.config.js files. The good news is that gjs' config is now available as a shared config from the `eslint-config-gnome` package in World/javascript, so we no longer have to copy the entire thing. Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell-extensions/-/merge_requests/408>
15 lines
422 B
JSON
15 lines
422 B
JSON
{
|
|
"name": "gnome-shell-extensions-dev-scripts",
|
|
"version": "1.0.0",
|
|
"license": "MIT OR LGPL-2.0-or-later",
|
|
"type": "module",
|
|
"private": true,
|
|
"scripts": {
|
|
"lint": "cd .. && ci-run-eslint"
|
|
},
|
|
"dependencies": {
|
|
"ci-run-eslint": "git+https://gitlab.gnome.org/World/javascript/ci-run-eslint.git",
|
|
"eslint-config-gnome": "git+https://gitlab.gnome.org/World/javascript/eslint-config-gnome.git"
|
|
}
|
|
}
|