denotify-client 1.1.14 → 1.1.16

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 CHANGED
@@ -1,18 +1,39 @@
1
1
  {
2
- "root": true,
3
- "parser": "@typescript-eslint/parser",
4
- "plugins": ["@typescript-eslint", "prettier"],
5
- "extends": [
6
- "eslint:recommended",
7
- "plugin:@typescript-eslint/eslint-recommended",
8
- "plugin:@typescript-eslint/recommended",
9
- "prettier"
2
+ "root": true,
3
+ "parser": "@typescript-eslint/parser",
4
+ "plugins": ["@typescript-eslint", "prettier"],
5
+ "extends": [
6
+ "eslint:recommended",
7
+ "plugin:@typescript-eslint/eslint-recommended",
8
+ "plugin:@typescript-eslint/recommended",
9
+ "prettier"
10
+ ],
11
+ "env": {
12
+ "browser": true,
13
+ "node": true
14
+ },
15
+ "ignorePatterns": [
16
+ "dist/*"
10
17
  ],
11
- "env": {
12
- "browser": true,
13
- "node": true
14
- },
15
- "rules": {
16
- "prettier/prettier": ["error", { "semi": false, "singleQuote": true, "trailingComma": "none" }]
17
- }
18
+ "rules": {
19
+ "prettier/prettier": [
20
+ "error",
21
+ {
22
+ "printWidth": 80,
23
+ "tabWidth": 2,
24
+ "singleQuote": true,
25
+ "trailingComma": "none",
26
+ "arrowParens": "avoid",
27
+ "bracketSpacing": true,
28
+ "useTabs": true,
29
+ "endOfLine": "auto",
30
+ "singleAttributePerLine": false,
31
+ "bracketSameLine": false,
32
+ "jsxBracketSameLine": false,
33
+ "jsxSingleQuote": false,
34
+ "quoteProps": "as-needed",
35
+ "semi": false
36
+ }
37
+ ]
38
+ }
18
39
  }
package/.lintstagedrc CHANGED
@@ -1,4 +1,4 @@
1
1
  {
2
- "./**/*.{ts,html,json}": "npm run format:scripts",
3
- "./**/*.{css,scss}": "npm run format:styles"
2
+ "./**/*.{ts,html,json}": "npm run format:scripts",
3
+ "./**/*.{css,scss}": "npm run format:styles"
4
4
  }
package/.prettierrc CHANGED
@@ -1,16 +1,16 @@
1
1
  {
2
- "printWidth": 80,
3
- "tabWidth": 2,
4
- "singleQuote": true,
5
- "trailingComma": "none",
6
- "arrowParens": "avoid",
7
- "bracketSpacing": true,
8
- "useTabs": false,
9
- "endOfLine": "auto",
10
- "singleAttributePerLine": false,
11
- "bracketSameLine": false,
12
- "jsxBracketSameLine": false,
13
- "jsxSingleQuote": false,
14
- "quoteProps": "as-needed",
15
- "semi": true
2
+ "printWidth": 80,
3
+ "tabWidth": 2,
4
+ "singleQuote": true,
5
+ "trailingComma": "none",
6
+ "arrowParens": "avoid",
7
+ "bracketSpacing": true,
8
+ "useTabs": true,
9
+ "endOfLine": "auto",
10
+ "singleAttributePerLine": false,
11
+ "bracketSameLine": false,
12
+ "jsxBracketSameLine": false,
13
+ "jsxSingleQuote": false,
14
+ "quoteProps": "as-needed",
15
+ "semi": false
16
16
  }
package/.stylelintrc CHANGED
@@ -1,18 +1,18 @@
1
1
  {
2
- "extends": [
3
- "stylelint-config-recommended",
4
- "stylelint-config-sass-guidelines"
5
- ],
6
- "overrides": [
7
- {
8
- "files": ["**/*.scss"],
9
- "customSyntax": "postcss-scss"
10
- }
11
- ],
12
- "rules": {
13
- "function-parentheses-space-inside": null,
14
- "no-descending-specificity": null,
15
- "max-nesting-depth": 2,
16
- "selector-max-id": 1
17
- }
2
+ "extends": [
3
+ "stylelint-config-recommended",
4
+ "stylelint-config-sass-guidelines"
5
+ ],
6
+ "overrides": [
7
+ {
8
+ "files": ["**/*.scss"],
9
+ "customSyntax": "postcss-scss"
10
+ }
11
+ ],
12
+ "rules": {
13
+ "function-parentheses-space-inside": null,
14
+ "no-descending-specificity": null,
15
+ "max-nesting-depth": 2,
16
+ "selector-max-id": 1
17
+ }
18
18
  }
package/README.md CHANGED
@@ -1 +1 @@
1
- # denotify-client
1
+ # denotify-client