update eslint to remove global no longer in use
ci/woodpecker/push/woodpecker Pipeline was successful Details

This commit is contained in:
David 2023-03-07 20:26:04 -05:00
parent fb76f2deed
commit 05925e1913
1 changed files with 10 additions and 28 deletions

View File

@ -1,30 +1,12 @@
{
"rules": {
"indent": [
2,
4
],
"quotes": [
2,
"single"
],
"linebreak-style": [
2,
"unix"
],
"semi": [
2,
"always"
],
"strict": [
2,
"never"
]
},
"env": {
"browser": true
},
"globals": {
"$": true
"rules": {
"indent": [2, 4],
"quotes": [2, "single"],
"linebreak-style": [2, "unix"],
"semi": [2, "always"],
"strict": [2, "never"]
},
"env": {
"browser": true
}
}
}