Skip to content

Commit 30fc713

Browse files
authored
Replace call to repo-tools lint (#861)
repo-tools lint was deleted in 3.0. Use semistandard. In a future CL, we will replace semistandard with eslint and prettier.
1 parent c819840 commit 30fc713

File tree

50 files changed

+56
-56
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+56
-56
lines changed

appengine/analytics/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
},
1515
"scripts": {
1616
"start": "node app.js",
17-
"lint": "repo-tools lint",
17+
"lint": "semistandard '**/*.js'",
1818
"pretest": "npm run lint",
1919
"system-test": "repo-tools test app",
2020
"test": "npm run system-test"

appengine/cloudsql/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"node": ">=8"
1414
},
1515
"scripts": {
16-
"lint": "repo-tools lint",
16+
"lint": "semistandard '**/*.js'",
1717
"pretest": "npm run lint",
1818
"unit-test": "ava --verbose test/*.test.js",
1919
"start-proxy": "! pgrep cloud_sql_proxy > /dev/null && cloud_sql_proxy -instances=$INSTANCE_CONNECTION_NAME=tcp:$SQL_PORT &",

appengine/cloudsql_postgresql/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"node": ">=8"
1414
},
1515
"scripts": {
16-
"lint": "repo-tools lint",
16+
"lint": "semistandard '**/*.js'",
1717
"pretest": "npm run lint",
1818
"unit-test": "ava --verbose test/*.test.js",
1919
"start-proxy": "! pgrep cloud_sql_proxy > /dev/null && cloud_sql_proxy -instances=$INSTANCE_CONNECTION_NAME=tcp:$SQL_PORT &",

appengine/datastore/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
},
1515
"scripts": {
1616
"start": "node app.js",
17-
"lint": "repo-tools lint",
17+
"lint": "semistandard '**/*.js'",
1818
"pretest": "npm run lint",
1919
"system-test": "repo-tools test app",
2020
"test": "npm run system-test"

appengine/endpoints/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"scripts": {
1616
"deploy": "gcloud app deploy",
1717
"start": "node app.js",
18-
"lint": "repo-tools lint",
18+
"lint": "semistandard '**/*.js'",
1919
"pretest": "npm run lint",
2020
"unit-test": "ava --verbose test/*.test.js",
2121
"system-test": "repo-tools test app",

appengine/errorreporting/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
},
1515
"scripts": {
1616
"start": "node app.js",
17-
"lint": "repo-tools lint",
17+
"lint": "semistandard '**/*.js'",
1818
"pretest": "npm run lint",
1919
"unit-test": "ava --verbose test/*.test.js",
2020
"system-test": "repo-tools test app",

appengine/headless-chrome/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"start": "node app.js",
1010
"system-test": "repo-tools test app",
1111
"unit-test": "ava --verbose test/*.test.js",
12-
"lint": "repo-tools lint",
12+
"lint": "semistandard '**/*.js'",
1313
"pretest": "npm run lint",
1414
"test": "npm run unit-test && npm run system-test"
1515
},

appengine/hello-world/flexible/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"scripts": {
1616
"deploy": "gcloud app deploy",
1717
"start": "node app.js",
18-
"lint": "repo-tools lint",
18+
"lint": "semistandard '**/*.js'",
1919
"pretest": "npm run lint",
2020
"system-test": "repo-tools test app",
2121
"test": "npm run system-test",

appengine/hello-world/standard/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"scripts": {
1616
"deploy": "gcloud app deploy",
1717
"start": "node app.js",
18-
"lint": "repo-tools lint",
18+
"lint": "semistandard '**/*.js'",
1919
"pretest": "npm run lint",
2020
"system-test": "repo-tools test app",
2121
"test": "npm run system-test",

appengine/mailjet/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
},
1515
"scripts": {
1616
"start": "node app.js",
17-
"lint": "repo-tools lint",
17+
"lint": "semistandard '**/*.js'",
1818
"pretest": "npm run lint",
1919
"system-test": "repo-tools test app",
2020
"test": "npm run system-test"

0 commit comments

Comments
 (0)