wazuh-dashboard/tasks/jenkins.js
Ashwin P Chandran 6c13abeac3
Chore: Replaces sass-lint with stylelint (#1413)
* Replaces `sass-lint` with `stylelint`

* Introduces standard scss rules from stylelint with only a few
  modifications.
* `yarn lint` now runs `yarn lint:style` instead of `yarn lint:sass`.
* Many of the files were updated with `yarn lint:style --fix`, but some
  of them had to be manually updated with overrides to adhere to the
  newly-introduced rules from the stylelint configuration.
* Includes a couple fixes such as fixing the class selector for
  `osdnSuggestionItem--value .osdSuggestionItem__text`.

Resolves #551
Resolves #1139
Resolves #1151
Resolves #1152
Resolves #1154

Signed-off-by: Tommy Markley <markleyt@amazon.com>

* fix(Style): Fixes flex style

Signed-off-by: Ashwin Pc <ashwinpc@amazon.com>

* fix(lint): Fixes empty comment lint issue

Signed-off-by: Ashwin Pc <ashwinpc@amazon.com>

* chore: rebase and updates yarn.lock

Signed-off-by: Ashwin Pc <ashwinpc@amazon.com>

Co-authored-by: Tommy Markley <markleyt@amazon.com>
2022-04-01 16:04:46 -07:00

54 lines
1.6 KiB
JavaScript

/*
* SPDX-License-Identifier: Apache-2.0
*
* The OpenSearch Contributors require contributions made to
* this file be licensed under the Apache-2.0 license or a
* compatible open source license.
*
* Any modifications Copyright OpenSearch Contributors. See
* GitHub history for details.
*/
/*
* Licensed to Elasticsearch B.V. under one or more contributor
* license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright
* ownership. Elasticsearch B.V. licenses this file to you under
* the Apache License, Version 2.0 (the "License"); you may
* not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
module.exports = function (grunt) {
grunt.registerTask('jenkins:docs', ['docker:docs']);
grunt.registerTask('jenkins:unit', [
'run:eslint',
'run:stylelint',
'run:checkTsProjects',
'run:checkDocApiChanges',
'run:typeCheck',
'run:i18nCheck',
'run:telemetryCheck',
'run:checkFileCasing',
'run:checkLockfileSymlinks',
'run:licenses',
'run:verifyNotice',
'run:mocha',
'run:test_jest',
'run:test_jest_integration',
'run:test_projects',
'run:test_hardening',
'run:apiIntegrationTests',
]);
};