Skip to content

Commit f448443

Browse files
committed
Website monitor
0 parents commit f448443

28 files changed

+10684
-0
lines changed

.babelrc

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"presets": [
3+
[
4+
"@babel/preset-env",
5+
{
6+
"modules": false
7+
}
8+
]
9+
],
10+
"plugins": [
11+
"array-includes",
12+
"@babel/plugin-transform-property-literals",
13+
"@babel/plugin-transform-member-expression-literals",
14+
"@babel/plugin-proposal-class-properties",
15+
"@babel/plugin-proposal-object-rest-spread",
16+
"@babel/plugin-transform-object-assign"
17+
]
18+
}

.clasp.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"scriptId": "1vzKEsju2LPmifjGtGbMxokh2eqCviBM3YN8KjuTLHlQB2UQt7DzCkzkN",
3+
"rootDir": "dist"
4+
}

.eslintignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
dist
2+
node_modules
3+
build

.eslintrc

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"root": true,
3+
"parser": "babel-eslint",
4+
"extends": [
5+
"eslint:recommended",
6+
"airbnb-base",
7+
"plugin:prettier/recommended"
8+
],
9+
"plugins": [
10+
"prettier",
11+
"googleappsscript"
12+
],
13+
"env": {
14+
"googleappsscript/googleappsscript": true
15+
},
16+
"rules": {
17+
"prettier/prettier": "error",
18+
"import/prefer-default-export": "error"
19+
},
20+
"globals": {
21+
"Gmail": true
22+
}
23+
}

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
node_modules/
2+
dist

.prettierrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"singleQuote": true
3+
}

.vscode/settings.json

Lines changed: 10 additions & 0 deletions
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+
}

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2018 Amit Agarwal
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Website Monitor for Google Docs

appsscript.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"timeZone": "America/Los_Angeles",
3+
"dependencies": {
4+
},
5+
"exceptionLogging": "STACKDRIVER",
6+
"oauthScopes": [
7+
"https://www.googleapis.com/auth/spreadsheets.currentonly",
8+
"https://www.googleapis.com/auth/script.container.ui",
9+
"https://www.googleapis.com/auth/script.external_request",
10+
"https://www.googleapis.com/auth/script.scriptapp",
11+
"https://www.googleapis.com/auth/script.send_mail"
12+
]
13+
}

0 commit comments

Comments
 (0)