@wishket/eslint-config-wishket 0.2.9 → 1.0.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.
@@ -2,4 +2,4 @@
2
2
  '@wishket/eslint-config-wishket': patch
3
3
  ---
4
4
 
5
- Publish with tag 0.2.9
5
+ Publish with tag 1.0.0
Binary file
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @wishket/eslint-plugin
2
2
 
3
+ ## 1.0.0
4
+
5
+ ### major Changes
6
+
7
+ - @wishket/eslint-config-wishket Grand Open !!
8
+
3
9
  ## 0.2.9
4
10
 
5
11
  ### Patch Changes
package/README.md CHANGED
@@ -19,3 +19,10 @@
19
19
  ```
20
20
 
21
21
  2. `.eslintrc`에 `"extends": "@wishket/eslint-config-wishket"` 추가
22
+
23
+ ```javascript
24
+ module.exports = {
25
+ extends: ["@wishket/eslint-config-wishket"],
26
+ // ...other settings
27
+ }
28
+ ```
package/index.js CHANGED
@@ -72,4 +72,9 @@ module.exports = {
72
72
  }
73
73
  ],
74
74
  },
75
+ settings : {
76
+ react: {
77
+ version: 'detect'
78
+ }
79
+ }
75
80
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wishket/eslint-config-wishket",
3
- "version": "0.2.9",
3
+ "version": "1.0.0",
4
4
  "description": "Wishket's eslint config",
5
5
  "main": "index.js",
6
6
  "author": "wishket-pjw <pjw@wishket.com> (https://github.com/wishket-pjw)",