@valora/eslint-config-typescript 1.0.0 → 1.0.1

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/CHANGELOG.md ADDED
@@ -0,0 +1,5 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
+
5
+ ### 1.0.1 (2022-07-11)
package/README.md CHANGED
@@ -41,3 +41,7 @@ module.exports = {
41
41
  ## Resources
42
42
 
43
43
  ESLint [Shareable Configs](https://eslint.org/docs/developer-guide/shareable-configs).
44
+
45
+ ## Publishing
46
+
47
+ Run `yarn release` and follow the instructions.
package/index.js CHANGED
@@ -19,7 +19,7 @@ module.exports = {
19
19
  'no-eval': 'error',
20
20
  '@typescript-eslint/triple-slash-reference': 'error',
21
21
  'import/no-relative-packages': 'error',
22
- 'no-console': ['error', { allow: ['warn', 'error', 'info'] }],
22
+ 'no-console': 'error',
23
23
  'no-constant-condition': ['error', { checkLoops: false }],
24
24
  'no-inner-declarations': ['error', 'functions'],
25
25
  'no-restricted-syntax': ['error', 'ForInStatement'],
package/package.json CHANGED
@@ -1,9 +1,12 @@
1
1
  {
2
2
  "name": "@valora/eslint-config-typescript",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "main": "index.js",
5
5
  "author": "Valora Inc",
6
6
  "license": "Apache-2.0",
7
+ "scripts": {
8
+ "release": "standard-version"
9
+ },
7
10
  "dependencies": {
8
11
  "@typescript-eslint/parser": "^4.25.0"
9
12
  },
@@ -20,7 +23,8 @@
20
23
  "registry": "https://registry.npmjs.org/"
21
24
  },
22
25
  "devDependencies": {
23
- "@valora/prettier-config": "^0.0.1"
26
+ "@valora/prettier-config": "^0.0.1",
27
+ "standard-version": "^9.5.0"
24
28
  },
25
29
  "prettier": "@valora/prettier-config"
26
30
  }