Updating js plugins

This commit is contained in:
ahwelp
2023-01-24 20:31:23 +00:00
parent b1eb0a7a56
commit 2b6ddf9569
602 changed files with 109412 additions and 18 deletions
+29
View File
@@ -0,0 +1,29 @@
{
"env": {
"browser": true,
"node": true
},
"rules": {
"func-names": 2,
"no-mixed-spaces-and-tabs": 2,
"quotes": [2, "single", "avoid-escape"],
"semi": 2,
"keyword-spacing": 2,
"space-before-function-paren": 2,
"curly": 0,
"consistent-return": 0,
"no-use-before-define": 0,
"no-process-exit": 0,
"strict": 0
},
"overrides": [
{
"files": ["mustache.js"],
"parserOptions": {
"sourceType": "module",
"ecmaVersion": 2015
}
}
]
}