Vim – additional files and docs

This commit is contained in:
2024-02-19 14:41:57 +01:00
parent 1112cd1229
commit cbdd0e0c20
13 changed files with 482 additions and 0 deletions

View File

@ -0,0 +1,14 @@
snippet jshint "JSHint config for package.json" b
"jshintConfig": {
"esversion": 6,
"browser": "true",
"undef": "true",
"latedef": "true",
"maxparams": 4,
"maxdepth": 3,
"maxcomplexity": 17,
"globals": {
"gulp_place": false
}
}
endsnippet