Skip to content

Commit

Permalink
improve the coding styles
Browse files Browse the repository at this point in the history
  • Loading branch information
JacksonTian committed May 8, 2022
1 parent a7b5622 commit 881f8dd
Show file tree
Hide file tree
Showing 5 changed files with 142 additions and 232 deletions.
3 changes: 2 additions & 1 deletion .eslintrc
Expand Up @@ -35,7 +35,7 @@
"no-shadow-restricted-names": 2,
"no-undef-init": 2,
"no-use-before-define": 2,
"no-unused-vars": 2,
"no-unused-vars": [2, {"args": "none"}],
"no-undef": 2,
"global-require": 0,
"no-console": 0,
Expand All @@ -49,6 +49,7 @@
"globals": {
"describe": true,
"it": true,
"xit": true,
"before": true,
"after": true
},
Expand Down
2 changes: 2 additions & 0 deletions example/app.js
@@ -1,3 +1,5 @@
'use strict';

var express = require('express'),
engine = require('../'),
app = express();
Expand Down

0 comments on commit 881f8dd

Please sign in to comment.