Skip to content

Commit c08ae9a

Browse files
author
Eric Koleda
authored
Merge pull request #106 from googlesamples/locking
Add support for locking
2 parents 4c96b8e + d8f4df8 commit c08ae9a

File tree

11 files changed

+327
-366
lines changed

11 files changed

+327
-366
lines changed

.eslintrc.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
module.exports = {
22
"extends": "google",
3+
"parserOptions": {
4+
"ecmaVersion": 6,
5+
},
36
"globals": {
47
"HtmlService": false,
58
"Logger": false,
@@ -8,6 +11,7 @@ module.exports = {
811
},
912
"rules": {
1013
"comma-dangle": "off",
11-
"no-var": "off"
14+
"no-var": "off",
15+
"generator-star-spacing": ["error", {"anonymous": "neither"}],
1216
}
1317
};

gulpfile.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ const concat = require('gulp-concat');
33
const expose = require('gulp-expose');
44
const del = require('del');
55
const rename = require("gulp-rename");
6-
const jshint = require('gulp-jshint');
7-
const stylish = require('jshint-stylish');
86
const eslint = require('gulp-eslint');
97

108
gulp.task('dist', ['clean'], function() {

0 commit comments

Comments
 (0)