We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 37c93a4 + a42f439 commit 1c92cffCopy full SHA for 1c92cff
.github/workflows/main.yml
@@ -55,5 +55,5 @@ jobs:
55
- name: Run Linter
56
run: |
57
# This command finds all JavaScript files recursively and runs JSHint on them
58
- find ./server/database -name "*.js" -exec jshint {} +
+ find ./server/database -name "*.js" -not -path "*/node_modules/*" -exec jshint {} +
59
echo "Linted all the js files successfully"
.jshintrc
@@ -0,0 +1,4 @@
1
+{
2
+ "node": true,
3
+ "esversion": 8
4
+}
0 commit comments