Skip to content

Commit 6add5b3

Browse files
sebdeckersrefack
authored andcommitted
tools: enforce consistent spacing inside braces
PR-URL: #14162 Reviewed-By: Vse Mozhet Byt <[email protected]> Reviewed-By: Refael Ackermann <[email protected]> Reviewed-By: Timothy Gu <[email protected]> Reviewed-By: James M Snell <[email protected]>
1 parent bb29405 commit 6add5b3

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.eslintignore

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ test/fixtures
55
test/disabled
66
test/tmp*/
77
tools/eslint
8+
tools/icu
89
node_modules
910
benchmark/tmp/
1011
doc/**/*.js

.eslintrc.yaml

+4-3
Original file line numberDiff line numberDiff line change
@@ -135,16 +135,17 @@ rules:
135135
}]
136136
no-tabs: error
137137
no-trailing-spaces: error
138+
object-curly-spacing: [error, always]
138139
one-var-declaration-per-line: error
139140
operator-linebreak: [error, after]
140141
quotes: [error, single, avoid-escape]
141142
semi: error
142143
semi-spacing: error
143144
space-before-blocks: [error, always]
144145
space-before-function-paren: [error, {
145-
"anonymous": "never",
146-
"named": "never",
147-
"asyncArrow": "always"
146+
anonymous: never,
147+
named: never,
148+
asyncArrow: always
148149
}]
149150
space-in-parens: [error, never]
150151
space-infix-ops: error

doc/.eslintrc.yaml

-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
## Docs-specific linter rules
22

33
rules:
4-
object-curly-spacing: [error, always]
5-
64
# ease some restrictions in doc examples
75
no-restricted-properties: off
86
no-undef: off

0 commit comments

Comments
 (0)