Skip to content

Commit

Permalink
Update .yamllint and fix lint errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthew-Grayson committed Mar 6, 2024
1 parent c196f08 commit 88f1a9d
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 8 deletions.
4 changes: 1 addition & 3 deletions .mdl_config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,7 @@ MD024:
allow_different_nesting: true

# MD029/ol-prefix - Ordered list item prefix
MD029:
# Enforce the `1.` style for ordered lists
style: "one"
MD029: false

# MD033/no-inline-html - Inline HTML
MD033: false
Expand Down
10 changes: 5 additions & 5 deletions .yamllint
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ rules:
# default. There are many scenarios where the inline mapping may be a key,
# hash, or other long value that would exceed the line length but cannot
# reasonably be broken across lines.
line-length:
# This rule implies the allow-non-breakable-words rule
allow-non-breakable-inline-mappings: true
# Allows a 10% overage from the default limit of 80
max: 88
line-length: disable

# yamllint doesn't like when we use yes and no for true and false,
# but that's pretty standard in Ansible.
truthy: disable

# yamlint doesn't like when we use spaces inside braces
# but that's pretty standard.
braces: disable
1 change: 1 addition & 0 deletions backend/env.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
---
dev:
DUMMY:

Expand Down
1 change: 1 addition & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
---
version: '3.4'

services:
Expand Down
1 change: 1 addition & 0 deletions frontend/.eslintrc.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
---
{
'env': { 'browser': true, 'es6': true, 'node': true },
'parser': '@typescript-eslint/parser',
Expand Down
1 change: 1 addition & 0 deletions frontend/env.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
---
dev:
FRONTEND_DOMAIN: ''

Expand Down
1 change: 1 addition & 0 deletions frontend/serverless.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
---
service: crossfeed-frontend

frameworkVersion: '3'
Expand Down

0 comments on commit 88f1a9d

Please sign in to comment.