blob: 615168810ac505908ac04fee1e559a85076e0a5a [file] [log] [blame]
// Copyright 2017-2020 The Verible Authors.
//
// 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
//
// 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.
#ifndef VERIBLE_VERILOG_ANALYSIS_CHECKERS_NO_TABS_RULE_H_
#define VERIBLE_VERILOG_ANALYSIS_CHECKERS_NO_TABS_RULE_H_
#include <set>
#include "absl/strings/string_view.h"
#include "common/analysis/line_lint_rule.h"
#include "common/analysis/lint_rule_status.h"
#include "verilog/analysis/descriptions.h"
namespace verilog {
namespace analysis {
// NoTabsRule detects whether any Verilog tokens contain tabs.
class NoTabsRule : public verible::LineLintRule {
public:
using rule_type = verible::LineLintRule;
static const LintRuleDescriptor &GetDescriptor();
NoTabsRule() = default;
void HandleLine(absl::string_view line) final;
verible::LintRuleStatus Report() const final;
private:
// Collection of found violations.
std::set<verible::LintViolation> violations_;
};
} // namespace analysis
} // namespace verilog
#endif // VERIBLE_VERILOG_ANALYSIS_CHECKERS_NO_TABS_RULE_H_