mirror of
https://github.com/gitpod-io/gitpod.git
synced 2025-12-08 17:36:30 +00:00
* update node to 18.17.1 * use new dev image * fix webpack in supervisor-frontend * bump webpack to 5.88.2 in dashboard * streamline webpack versions * Fix craco config * streamline eslint versions * Update eslint config and disable for now * Enable eslint again * Update vscode-jsonrpc for browser implementation * Polyfill setimmeadiate * Remove NODE_OPTIONS env var from supervisor front end scripts * Fix css * Fix css 2 * Fix checkboxchecked * Add comment * Fix yarn.lock --------- Co-authored-by: Jean Pierre <jeanp413@hotmail.com>
15 lines
417 B
JavaScript
15 lines
417 B
JavaScript
/**
|
|
* Copyright (c) 2021 Gitpod GmbH. All rights reserved.
|
|
* Licensed under the GNU Affero General Public License (AGPL).
|
|
* See License.AGPL.txt in the project root for license information.
|
|
*/
|
|
|
|
module.exports = {
|
|
root: true,
|
|
extends: ["react-app", "react-app/jest"],
|
|
rules: {
|
|
"import/no-anonymous-default-export": "error",
|
|
"react/jsx-no-constructed-context-values": "error",
|
|
},
|
|
};
|