Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
11 changes: 10 additions & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
"jasmine": true
},
"extends": [
"airbnb-base",
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
Expand Down Expand Up @@ -61,6 +60,16 @@
"import/no-unresolved": ["error"],
"import/no-duplicates": ["error"],
"import/prefer-default-export": 0,
"import/extensions": [
"error",
"ignorePackages",
{
"js": "never",
"jsx": "never",
"ts": "never",
"tsx": "never"
}
],
"max-nested-callbacks": [1, 4],
"max-classes-per-file": [0],
"no-alert": 2,
Expand Down
3 changes: 1 addition & 2 deletions build/bundle-tools.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,13 @@
* Copyright (c) Red Hat, Inc. All rights reserved.
* Licensed under the MIT License. See LICENSE file in the project root for license information.
*-----------------------------------------------------------------------------------------------*/

/* eslint-disable guard-for-in */
/* eslint-disable no-restricted-syntax */
/* eslint-disable no-console */

import { exit } from 'process';
import { DownloadUtil } from './download';
import { Archive } from './archive';
import { DownloadUtil } from './download';

import hasha = require('hasha');
import mkdirp = require('mkdirp');
Expand Down
5 changes: 2 additions & 3 deletions build/verify-tools.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,14 @@
/* eslint-disable @typescript-eslint/no-misused-promises */

import { exit } from 'shelljs';
import { DownloadUtil } from './download';

import hasha = require('hasha');
import mkdirp = require('mkdirp');
import fs = require('fs-extra');
import path = require('path');
import cp = require('child_process');
import configData = require('../src/tools.json');
import os = require('os');
import { DownloadUtil } from './download';
import configData = require('../src/tools.json');

/**
* Download reqURL to targetFolder and save it to fileName. Verify the downloaded file sha256 is matching sha256sum
Expand Down
Binary file added images/component/component-type-dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/component/component-type-light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/component/start-project-dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/component/start-project-light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading