sn-typescript-util 1.2.6 → 1.2.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/.eslintignore ADDED
@@ -0,0 +1 @@
1
+ node_modules
package/.prettierrc.yml CHANGED
@@ -1,3 +1,4 @@
1
1
  singleQuote: true
2
2
  tabWidth: 2
3
3
  trailingComma: 'none'
4
+ useTabs: false
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sn-typescript-util",
3
- "version": "1.2.6",
3
+ "version": "1.2.7",
4
4
  "description": "A TypeScript utility for ServiceNow developers using VS Code",
5
5
  "bin": {
6
6
  "snts": "bin/snts.js"
@@ -18,6 +18,7 @@
18
18
  },
19
19
  "scripts": {
20
20
  "format": "prettier --write ./bin/*.js ./scripts/*.ts",
21
+ "lint": "eslint .",
21
22
  "release": "./scripts/release.sh",
22
23
  "watch": "tsc --watch"
23
24
  },
@@ -1,5 +1,6 @@
1
1
  {
2
2
  "singleQuote": true,
3
3
  "tabWidth": 2,
4
- "trailingComma": "none"
4
+ "trailingComma": "none",
5
+ "useTabs": false
5
6
  }