Skip to content

Commit c25d27b

Browse files
committedAug 5, 2018
updates settings
1 parent e7bda4e commit c25d27b

7 files changed

+77
-19
lines changed
 

‎.eslintignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/node_module

‎.eslintrc

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
{
2+
"root": true,
3+
"parser": "babel-eslint",
4+
"extends": ["eslint:recommended", "google", "plugin:prettier/recommended"],
5+
"plugins": ["prettier", "googleappsscript"],
6+
"env": {
7+
"googleappsscript/googleappsscript": true
8+
},
9+
"rules": {
10+
"prettier/prettier": "error",
11+
"import/prefer-default-export": 0,
12+
"no-alert" : "off",
13+
"no-plusplus" : "off",
14+
"no-var" : "off",
15+
"require-jsdoc": "off",
16+
"no-unused-vars": ["warn", { "varsIgnorePattern": "^[A-Z_]*$" }],
17+
"no-console":"warn",
18+
"prefer-rest-params":"off"
19+
},
20+
"globals": {
21+
"CardService": true,
22+
"Gmail": true,
23+
"Drive": true,
24+
"OAuth1": true,
25+
"OAuth2": true,
26+
"FirebaseApp": true,
27+
"alert": true,
28+
"isNaN": true,
29+
"require":true,
30+
"process":true,
31+
"ScriptyApp":true
32+
}
33+
}

‎.eslintrc.js

-9
This file was deleted.

‎.prettierrc

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"printWidth": 100,
3+
"singleQuote": true
4+
}

‎.vscode/settings.json

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"git.enabled": true,
3+
"eslint.alwaysShowStatus": true,
4+
"editor.formatOnSave": false,
5+
"eslint.autoFixOnSave": true,
6+
"files.autoSave": "onFocusChange",
7+
"eslint.validate": [
8+
"javascript"
9+
]
10+
}

‎gulpfile.js

+22-9
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,28 @@
1-
const gulp = require('gulp');
1+
const gulp = require('gulp');
22
const exec = require('child_process').exec;
3+
const eslint = require('gulp-eslint');
34

4-
gulp.task('push', function() {
5-
process.chdir('./apps_script/');
6-
exec('clasp push');
5+
gulp.task('lint', () => {
6+
return (
7+
gulp
8+
.src(['apps_script/*.js'])
9+
// eslint() attaches the lint output to the "eslint" property
10+
// of the file object so it can be used by other modules.
11+
.pipe(eslint())
12+
// eslint.format() outputs the lint results to the console.
13+
// Alternatively use eslint.formatEach() (see Docs).
14+
.pipe(eslint.format())
15+
// To have the process exit with an error code (1) on
16+
// lint error, return the stream and pipe to failAfterError last.
17+
.pipe(eslint.failAfterError())
18+
);
719
});
820

9-
gulp.task('watch',function(){
10-
gulp.watch([
11-
'**/*.gs',
12-
'**/*.html'
13-
],['push'])
21+
gulp.task('push', function() {
22+
process.chdir('./apps_script/');
23+
exec('clasp push');
1424
});
1525

26+
gulp.task('watch', function() {
27+
gulp.watch(['**/*.gs', '**/*.html'], ['push']);
28+
});

‎package.json

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,16 @@
11
{
22
"dependencies": {
3+
"@types/google-apps-script": "^0.0.26",
4+
"babel-eslint": "^8.2.6",
35
"eslint": "^5.2.0",
46
"eslint-config-google": "^0.9.1",
7+
"eslint-config-prettier": "^2.9.0",
58
"eslint-plugin-googleappsscript": "^1.0.1",
9+
"eslint-plugin-prettier": "^2.6.2",
610
"google-apps-script": "^4.0.0",
711
"gulp": "^3.9.1",
8-
"jslint": "^0.12.0"
12+
"gulp-eslint": "^5.0.0",
13+
"jslint": "^0.12.0",
14+
"prettier": "^1.14.0"
915
}
1016
}

0 commit comments

Comments
 (0)
Please sign in to comment.