Skip to content

Commit

Permalink
Merge pull request #16 from smithki/development
Browse files Browse the repository at this point in the history
Fix linter issues for release
  • Loading branch information
smithki authored Aug 15, 2019
2 parents 7fbac68 + 6cdde93 commit f76fc2a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/lib.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ export type StorageProxy<TStorageDefinitions> = Partial<TStorageDefinitions> & {
readonly [namespaceSymbol]: string;
readonly [isStorageProxy]: true;
readonly [storageTargetSymbol]: StorageTarget;
[storageProxyIntegrityKey]: string;
};

// --- Utilities ------------------------------------------------------------ //
Expand Down
3 changes: 2 additions & 1 deletion tslint.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
"singleQuote": true,
"trailingComma": "all",
"bracketSpacing": true,
"jsxBracketSameLine": true
"jsxBracketSameLine": true,
"variable-name": false,
}]
}
}

0 comments on commit f76fc2a

Please sign in to comment.