forked from ontoportal/ontoportal_web_ui
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add haml-lint to detect no localized stings in haml files
- Loading branch information
1 parent
eeabe35
commit 19a4496
Showing
6 changed files
with
323 additions
and
56 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,36 @@ | ||
name: Code style | ||
name: Linters | ||
|
||
on: [ pull_request ] | ||
on: [push, pull_request] | ||
|
||
jobs: | ||
lint: | ||
name: all linters | ||
rubocop: | ||
name: RuboCop | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
- name: rubocop | ||
run: bin/ontoportal run bundle exec rubocop --parallel | ||
uses: actions/checkout@v2 | ||
|
||
- name: Set up Ruby | ||
uses: ruby/setup-ruby@v1 | ||
with: | ||
ruby-version: 3.0.0 | ||
|
||
- name: Install dependencies | ||
run: gem install rubocop rubocop-rails rubocop-i18n | ||
|
||
|
||
- name: Run RuboCop | ||
run: rubocop --parallel --format github | ||
|
||
haml-lint: | ||
name: HamlLint | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Install HamlLint | ||
run: gem install haml-lint | ||
|
||
- name: Run HamlLint | ||
run: haml-lint -r github |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,137 @@ | ||
require: | ||
- './lib/lint/no_localized_string_haml.rb' | ||
|
||
linters: | ||
CustomLinter: | ||
enabled: true | ||
include: '**/*.haml' | ||
|
||
# Default application configuration that all configurations inherit from. | ||
# | ||
# This is an opinionated list of which hooks are valuable to run and what their | ||
# out of the box settings should be. | ||
|
||
# Whether to ignore frontmatter at the beginning of HAML documents for | ||
# frameworks such as Jekyll/Middleman | ||
skip_frontmatter: false | ||
|
||
linters: | ||
|
||
MyFirstLinter: | ||
enabled: true | ||
|
||
NoPlainTextLinter: | ||
enabled: true | ||
|
||
AlignmentTabs: | ||
enabled: true | ||
|
||
AltText: | ||
enabled: false | ||
|
||
ClassAttributeWithStaticValue: | ||
enabled: true | ||
|
||
ClassesBeforeIds: | ||
enabled: true | ||
|
||
ConsecutiveComments: | ||
enabled: true | ||
max_consecutive: 1 | ||
|
||
ConsecutiveSilentScripts: | ||
enabled: true | ||
max_consecutive: 2 | ||
|
||
EmptyObjectReference: | ||
enabled: true | ||
|
||
EmptyScript: | ||
enabled: true | ||
|
||
FinalNewline: | ||
enabled: true | ||
present: true | ||
|
||
HtmlAttributes: | ||
enabled: true | ||
|
||
IdNames: | ||
enabled: true | ||
style: lisp_case | ||
|
||
ImplicitDiv: | ||
enabled: true | ||
|
||
Indentation: | ||
enabled: true | ||
character: space # or tab | ||
width: 2 # ignored if character == tab | ||
|
||
InlineStyles: | ||
enabled: true | ||
|
||
InstanceVariables: | ||
enabled: true | ||
file_types: partials | ||
matchers: | ||
all: .* | ||
partials: \A_.*\.haml\z | ||
|
||
LeadingCommentSpace: | ||
enabled: true | ||
|
||
LineLength: | ||
enabled: true | ||
max: 80 | ||
|
||
MultilinePipe: | ||
enabled: true | ||
|
||
MultilineScript: | ||
enabled: true | ||
|
||
NoPlaceholders: | ||
enabled: false | ||
|
||
ObjectReferenceAttributes: | ||
enabled: true | ||
|
||
RepeatedId: | ||
enabled: true | ||
severity: error | ||
|
||
RuboCop: | ||
enabled: true | ||
# Users can ignore cops using this configuration instead of editing their rubocop configuration. | ||
# Mostly there for backward compatibility. | ||
ignored_cops: [] | ||
|
||
RubyComments: | ||
enabled: true | ||
|
||
SpaceBeforeScript: | ||
enabled: true | ||
|
||
SpaceInsideHashAttributes: | ||
enabled: true | ||
style: space | ||
|
||
TagName: | ||
enabled: true | ||
|
||
TrailingEmptyLines: | ||
enabled: true | ||
|
||
TrailingWhitespace: | ||
enabled: true | ||
|
||
UnnecessaryInterpolation: | ||
enabled: true | ||
|
||
UnnecessaryStringOutput: | ||
enabled: true | ||
|
||
ViewLength: | ||
enabled: true | ||
max: 100 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.