dcmjs 0.25.0 → 0.26.0

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/.eslintrc.json CHANGED
@@ -1,18 +1,18 @@
1
1
  {
2
2
  "env": {
3
- "browser": true,
3
+ "browser": true,
4
4
  "node": true,
5
5
  "es6": true,
6
6
  "jest": true
7
7
  },
8
+
8
9
  "extends": [
9
- "eslint:recommended"
10
+ "eslint:recommended",
11
+ "prettier"
10
12
  ],
11
- "rules": {
12
- "indent": [
13
- "error",
14
- 4
15
- ]
16
- },
17
- "parser": "babel-eslint"
13
+
14
+ "parserOptions": {
15
+ "ecmaVersion": 11,
16
+ "sourceType": "module"
17
+ }
18
18
  }
package/.prettierrc CHANGED
@@ -1,4 +1,5 @@
1
1
  {
2
2
  "tabWidth": 4,
3
- "semi": true
3
+ "trailingComma": "none",
4
+ "arrowParens": "avoid"
4
5
  }
@@ -1,3 +1,8 @@
1
1
  {
2
- "editor.formatOnSave": true
2
+
3
+ "editor.defaultFormatter": "esbenp.prettier-vscode",
4
+ "[javascript]": {
5
+ "editor.tabSize": 4,
6
+ "editor.formatOnSave": true
7
+ },
3
8
  }
package/README.md CHANGED
@@ -68,7 +68,7 @@ npm run build
68
68
  npm test
69
69
  ```
70
70
 
71
- ## For Maintainers
71
+ ## For Maintainers and Contributors
72
72
 
73
73
  Publish new version automatically from commit:
74
74
 
@@ -79,6 +79,9 @@ Use the following "Commit Message Format" when drafting commit messages. If you'
79
79
  Note: Be wary of `BREAKING_CHANGE` in commit message descriptions, as this can force a major version bump.
80
80
 
81
81
  Be sure to use lower case for the first letter of your semantic commit message, so use `fix` not `Fix` or `feat` not `Feat`.
82
+
83
+ ### Optional Tooling
84
+
82
85
  It is advised to use the git-cz, i.e.:
83
86
 
84
87
  - install git-cz