Don't ignore dotfiles when running eslint

This commit is contained in:
Marco Ferrari 2023-01-06 15:34:53 +00:00 committed by Brett Logan
parent aad87c569b
commit b03920b534
3 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,12 @@
{
"arrow_spacing": {
"level": ["ignore"]
},
"foo": "bar",
"foo": "baz",
"braces_spacing": {
"level": 'ignore',
"spaces": 0
"empty_object_spaces": 0
}
}

View file

@ -0,0 +1,10 @@
{
"arrow_spacing": {
"level": "ignore"
},
"braces_spacing": {
"level": "ignore",
"spaces": 0,
"empty_object_spaces": 0
}
}

View file

@ -20,6 +20,10 @@ globals:
Atomics: readonly Atomics: readonly
SharedArrayBuffer: readonly SharedArrayBuffer: readonly
ignorePatterns:
- "!.*"
- "**/node_modules/.*"
############### ###############
# Parser vars # # Parser vars #
############### ###############