denotify-client 1.1.13 → 1.1.14

Sign up to get free protection for your applications and to get access to all the features.
package/.eslintrc CHANGED
@@ -13,6 +13,6 @@
13
13
  "node": true
14
14
  },
15
15
  "rules": {
16
- "prettier/prettier": "error"
16
+ "prettier/prettier": ["error", { "semi": false, "singleQuote": true, "trailingComma": "none" }]
17
17
  }
18
18
  }
package/.prettierrc CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "printWidth": 80,
3
3
  "tabWidth": 2,
4
- "singleQuote": false,
5
- "trailingComma": "es5",
4
+ "singleQuote": true,
5
+ "trailingComma": "none",
6
6
  "arrowParens": "avoid",
7
7
  "bracketSpacing": true,
8
8
  "useTabs": false,
@@ -0,0 +1,4 @@
1
+ {
2
+ "editor.tabSize": 2,
3
+ "editor.insertSpaces": true
4
+ }