2023-11-03 10:44:03 +00:00
|
|
|
// Copyright 2023 Woodpecker Authors
|
2022-08-15 12:37:46 +00:00
|
|
|
//
|
|
|
|
// Licensed 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
|
|
|
|
//
|
2023-11-03 10:44:03 +00:00
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
2022-08-15 12:37:46 +00:00
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
|
2023-11-03 10:44:03 +00:00
|
|
|
package linter
|
2022-08-15 12:37:46 +00:00
|
|
|
|
2023-11-03 10:44:03 +00:00
|
|
|
import (
|
2023-12-08 07:15:08 +00:00
|
|
|
"go.woodpecker-ci.org/woodpecker/v2/pipeline/errors"
|
2023-11-03 10:44:03 +00:00
|
|
|
)
|
2023-02-01 23:08:02 +00:00
|
|
|
|
2023-11-04 14:30:47 +00:00
|
|
|
func newLinterError(message, file, field string, isWarning bool) *errors.PipelineError {
|
2023-11-03 10:44:03 +00:00
|
|
|
return &errors.PipelineError{
|
|
|
|
Type: errors.PipelineErrorTypeLinter,
|
|
|
|
Message: message,
|
2023-11-04 14:30:47 +00:00
|
|
|
Data: &errors.LinterErrorData{File: file, Field: field},
|
2023-11-03 10:44:03 +00:00
|
|
|
IsWarning: isWarning,
|
|
|
|
}
|
2022-08-15 12:37:46 +00:00
|
|
|
}
|