Update HoundCI config (#6687)

This commit is contained in:
Alex Kriuchykhin 2023-11-23 09:50:39 +01:00 committed by GitHub
parent 58aa0f096d
commit 940ff553c0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 16 additions and 26 deletions

View file

@ -21,6 +21,20 @@
{
"beforeLineComment": false
}
],
"max-len": [
"error",
{
"code": 120
}
],
"vue/max-len": [
"error",
{
"code": 120,
"template": 240,
"tabWidth": 2
}
]
},
"globals": {

View file

@ -4,7 +4,8 @@ ruby:
eslint:
enabled: true
config_file: app/assets/.eslintrc.json
version: 8.1.0
config_file: .eslintrc.json
scss:
config_file: .scss-lint.yml

View file

@ -1,25 +0,0 @@
{
"env": {
"browser": true,
"jquery": true
},
"extends": ["airbnb"],
"rules": {
"space-before-function-paren": ["error", "never"],
"func-names": ["error", "never"],
"spaced-comment": [
"error",
"always",
{
"markers": ["="]
}
],
"lines-around-comment": [
"warn",
{
"beforeLineComment": false
}
],
"max-len": ["error", { "code": 120 }]
}
}