Skip to content

Commit

Permalink
fix: Update opensphere linter config to 3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bradh committed Jul 9, 2019
1 parent 2f1b5b7 commit 2b155de
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions os-docs.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ if (process.argv.length < 3) {
args = process.argv.slice(2);

// check if verbose warning output is enabled
let verboseIndex = args.indexOf('--verbose');
const verboseIndex = args.indexOf('--verbose');
if (verboseIndex > -1) {
verbose = true;

Expand All @@ -29,7 +29,7 @@ if (process.argv.length < 3) {

const compile = function(args) {
return new Promise(function(resolve, reject) {
let javaArgs = ['-jar', dossierJarPath].concat(args);
const javaArgs = ['-jar', dossierJarPath].concat(args);

const process = childProcess.spawn('java', javaArgs);
process.stdout.on('data', function(data) {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
"cz-conventional-changelog": "^1.2.0",
"eslint": "^6.0.0",
"eslint-config-google": "^0.13.0",
"eslint-config-opensphere": "^2.0.0",
"eslint-config-opensphere": "^3.0.0",
"eslint-plugin-google-camelcase": "^0.0.2",
"eslint-plugin-jsdoc": "^8.6.0",
"eslint-plugin-opensphere": "^2.0.0",
Expand Down

0 comments on commit 2b155de

Please sign in to comment.