Skip to content

Commit

Permalink
Fix lint issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason3S committed Oct 22, 2017
1 parent 57553c9 commit da2e940
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"generate-code-coverage": "NODE_ENV=test nyc npm run test-ts",
"test-ts": "NODE_ENV=test mocha --compilers ts:ts-node/register --recursive --bail \"src/**/*.test.ts\"",
"test-watch": "npm run build && mocha --compilers ts:ts-node/register --watch --recursive \"src/**/*.test.ts\"",
"prepublish": "npm run clean-build && npm test",
"prepublish": "npm run lint && npm run clean-build && npm test",
"coverage-coveralls": "nyc report --reporter=text-lcov | coveralls",
"travis-coverage": "npm run generate-code-coverage && npm run coverage-coveralls",
"which": "which node && echo $PATH",
Expand Down
2 changes: 1 addition & 1 deletion src/Settings/DefaultSettings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ const defaultSettings: CSpellUserSettings = {
dictionaryDefinitions: defaultDictionaryDefs,
};

const getSettings = function(){
const getSettings = function() {
let settings: CSpellUserSettings | undefined = undefined;
return function() {
if (!settings) {
Expand Down

0 comments on commit da2e940

Please sign in to comment.